diff options
author | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-09-05 16:17:57 +0200 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2025-03-19 15:32:10 +0100 |
commit | da48816297db523cac4bd69aceafb7cafc7478e2 (patch) | |
tree | 127b65506d980bea4ea9d8c2e78a938c8b55eb3e /gcc | |
parent | 5aedc53315387276070e36a5dac4e768f7540cf2 (diff) | |
download | gcc-da48816297db523cac4bd69aceafb7cafc7478e2.zip gcc-da48816297db523cac4bd69aceafb7cafc7478e2.tar.gz gcc-da48816297db523cac4bd69aceafb7cafc7478e2.tar.bz2 |
gccrs: session-manager: Fix typos in -frust-incomplete message
gcc/rust/ChangeLog:
* rust-session-manager.cc (Session::compile_crate): Use less repetition,
fix a typo in `reports`, fix word order.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/rust/rust-session-manager.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/rust/rust-session-manager.cc b/gcc/rust/rust-session-manager.cc index 74f5510..a5cd97f 100644 --- a/gcc/rust/rust-session-manager.cc +++ b/gcc/rust/rust-session-manager.cc @@ -477,10 +477,11 @@ Session::compile_crate (const char *filename) rust_fatal_error ( UNDEF_LOCATION, "%s", "gccrs is not yet able to compile Rust code " - "properly. Most of the errors produced will be gccrs' fault and not the " - "crate you are trying to compile. Because of this, please reports issues " - "to us directly instead of opening issues on said crate's " - "repository.\n\nOur github repository: " + "properly. Most of the errors produced will be the fault of gccrs and " + "not the crate you are trying to compile. Because of this, please report " + "errors directly to us instead of opening issues on said crate's " + "repository.\n\n" + "Our github repository: " "https://github.com/rust-gcc/gccrs\nOur bugzilla tracker: " "https://gcc.gnu.org/bugzilla/" "buglist.cgi?bug_status=__open__&component=rust&product=gcc\n\n" |