diff options
author | Owen Avery <powerboat9.gamer@gmail.com> | 2023-09-19 11:48:02 -0400 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-01-16 19:04:37 +0100 |
commit | b9a046cf4cdee115c30d8d0b667ec56ca4c1fd64 (patch) | |
tree | c618993a2c7b8bf236916a41532bcd87d975d1f9 /gcc/rust/ast/rust-expr.h | |
parent | af2be5b555a902f4c77ba161a3dcf16902b442db (diff) | |
download | gcc-b9a046cf4cdee115c30d8d0b667ec56ca4c1fd64.zip gcc-b9a046cf4cdee115c30d8d0b667ec56ca4c1fd64.tar.gz gcc-b9a046cf4cdee115c30d8d0b667ec56ca4c1fd64.tar.bz2 |
gccrs: Fix spelling
gcc/rust/ChangeLog:
* ast/rust-expr.h: Fix spelling of "doesn't".
* backend/rust-compile-expr.cc: Fix spelling of "accessors".
* backend/rust-compile-implitem.h: Fix spelling of "normal".
* backend/rust-constexpr.cc: Fix spelling of "actual".
Signed-off-by: Owen Avery <powerboat9.gamer@gmail.com>
Diffstat (limited to 'gcc/rust/ast/rust-expr.h')
-rw-r--r-- | gcc/rust/ast/rust-expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index 69937bf..012b055 100644 --- a/gcc/rust/ast/rust-expr.h +++ b/gcc/rust/ast/rust-expr.h @@ -4594,14 +4594,14 @@ struct InlineAsmTemplatePiece struct TupleClobber { - // as gccrs still doesen't contain a symbol class I have put them as strings + // as gccrs still doesn't contain a symbol class I have put them as strings std::string symbol; location_t loc; }; struct TupleTemplateStr { - // as gccrs still doesen't contain a symbol class I have put them as strings + // as gccrs still doesn't contain a symbol class I have put them as strings std::string symbol; std::string optional_symbol; location_t loc; |