diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2022-03-11 21:59:57 +0100 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gdcproject.org> | 2022-03-11 23:34:59 +0100 |
commit | 7a6ba7c7cb6ff5ac9bbcc747bd5fad957b78fa0a (patch) | |
tree | f308a6c1de1fe80cb5745103683e4e6f94258939 | |
parent | 251ea6dfbdb4448875e41081682bb3aa451b5729 (diff) | |
download | gcc-7a6ba7c7cb6ff5ac9bbcc747bd5fad957b78fa0a.zip gcc-7a6ba7c7cb6ff5ac9bbcc747bd5fad957b78fa0a.tar.gz gcc-7a6ba7c7cb6ff5ac9bbcc747bd5fad957b78fa0a.tar.bz2 |
d: Fix mistakes in strings to be translated [PR104552]
Address comments made in PR104552 about documented D language options.
gcc/d/ChangeLog:
PR translation/104552
* lang.opt (fdump-cxx-spec=): Fix typo in argument handle.
(fpreview=fixaliasthis): Quote `alias this' as code.
-rw-r--r-- | gcc/d/lang.opt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/d/lang.opt b/gcc/d/lang.opt index 491797a..7859e15 100644 --- a/gcc/d/lang.opt +++ b/gcc/d/lang.opt @@ -277,7 +277,7 @@ Add comments for ignored declarations in the generated C++ header. fdump-c++-spec= D RejectNegative Joined --fdump-cxx-spec=<filename> Write all declarations as C++ code to <file>. +-fdump-cxx-spec=<filename> Write all declarations as C++ code to <filename>. fdump-d-original D @@ -370,7 +370,7 @@ Use field-wise comparisons for struct equality. fpreview=fixaliasthis D RejectNegative -When a symbol is resolved, check alias this scope before going to upper scopes. +When a symbol is resolved, check `alias this' scope before going to upper scopes. fpreview=in D RejectNegative |