summaryrefslogtreecommitdiff
path: root/gcc/doc/trouble.texi
diff options
context:
space:
mode:
authormsebor <msebor@138bc75d-0d04-0410-961f-82ee72b054a4>2017-03-21 21:37:29 +0000
committermsebor <msebor@138bc75d-0d04-0410-961f-82ee72b054a4>2017-03-21 21:37:29 +0000
commitfcd8b5ad239bc8970a30c54e4529ab29832697b7 (patch)
tree4e75a6890a73f85e8d458984f34951e7b42eb1f8 /gcc/doc/trouble.texi
parent504bd413091de2fd9cc7ca6c5a26740957280063 (diff)
downloadgcc-fcd8b5ad239bc8970a30c54e4529ab29832697b7.tar.gz
Use the more formal "cannot" instead of the informal "can't."
gcc/ChangeLog: * doc/extend.texi: Use "cannot" instead of "can't." * doc/hostconfig.texi: Same. * doc/install.texi: Same. * doc/invoke.texi: Same. * doc/loop.texi: Same. * doc/md.texi: Same. * doc/objc.texi: Same. * doc/rtl.texi: Same. * doc/tm.texi: Same. * doc/tm.texi.in: Same. * doc/trouble.texi: Same. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@246334 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/trouble.texi')
-rw-r--r--gcc/doc/trouble.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/trouble.texi b/gcc/doc/trouble.texi
index f6e33de3247..0f0ae9a57d2 100644
--- a/gcc/doc/trouble.texi
+++ b/gcc/doc/trouble.texi
@@ -25,7 +25,7 @@ where people's opinions differ as to what is best.
This is necessary, but doesn't always work smoothly.
* Standard Libraries:: GCC uses the system C library, which might not be
compliant with the ISO C standard.
-* Disappointments:: Regrettable things we can't change, but not quite bugs.
+* Disappointments:: Regrettable things we cannot change, but not quite bugs.
* C++ Misunderstandings:: Common misunderstandings with GNU C++.
* Non-bugs:: Things we think are right, but some others disagree.
* Warnings and Errors:: Which problems in your code get warnings,
@@ -743,7 +743,7 @@ In @code{get_i()}, @code{i} is not used in a dependent context, so the
compiler will look for a name declared at the enclosing namespace scope
(which is the global scope here). It will not look into the base class,
since that is dependent and you may declare specializations of
-@code{Base} even after declaring @code{Derived}, so the compiler can't
+@code{Base} even after declaring @code{Derived}, so the compiler cannot
really know what @code{i} would refer to. If there is no global
variable @code{i}, then you will get an error message.