Update compiler/rustc_session/src/config.rs

Co-authored-by: bjorn3 <17426603+bjorn3@users.noreply.github.com>
This commit is contained in:
Matthew E 2023-01-06 14:36:52 -05:00 committed by GitHub
parent 5cda0a2f39
commit 893938f64f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1325,7 +1325,7 @@ mod opt {
} }
static EDITION_STRING: LazyLock<String> = LazyLock::new(|| { static EDITION_STRING: LazyLock<String> = LazyLock::new(|| {
format!( format!(
"Specify which edition of the compiler to use when compiling code.\ "Specify which edition of the compiler to use when compiling code. \
The default is {DEFAULT_EDITION} and the latest stable edition is {LATEST_STABLE_EDITION}." The default is {DEFAULT_EDITION} and the latest stable edition is {LATEST_STABLE_EDITION}."
) )
}); });