aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2021-01-09 14:31:48 +0000
committerJonathan Wakely <jwakely@redhat.com>2021-01-13 10:29:00 +0000
commit4c598b038dfd79cf65a709deef1c54fb6583b847 (patch)
tree2deba209d00fb2da3bc41ca29d3b3f9c55f0df30
parentffd28c265e6d611983cd27e9332dc799039a3f04 (diff)
downloadgcc-4c598b038dfd79cf65a709deef1c54fb6583b847.zip
gcc-4c598b038dfd79cf65a709deef1c54fb6583b847.tar.gz
gcc-4c598b038dfd79cf65a709deef1c54fb6583b847.tar.bz2
doc: Fix typos in C++ Modules documentation
gcc/ChangeLog: * doc/invoke.texi (C++ Modules): Fix typos.
-rw-r--r--gcc/doc/invoke.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index 226b8ad..298f1f8 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -32860,7 +32860,7 @@ not get debugging information for routines in the precompiled header.
@section C++ Modules
@cindex speed of compilation
-Modules are a C++ 20 language feature. As the name suggests, it
+Modules are a C++20 language feature. As the name suggests, they
provides a modular compilation system, intending to provide both
faster builds and better library isolation. The ``Merging Modules''
paper @uref{https://wg21.link/p1103}, provides the easiest to read set
@@ -32892,7 +32892,7 @@ emitted.
@item Translation-Unit local referencing rules
Papers p1815 (@uref{https://wg21.link/p1815}) and p2003
-(@uref{https://wg21.link/p2003} add limitations on which entities an
+(@uref{https://wg21.link/p2003}) add limitations on which entities an
exported region may reference (for instance, the entities an exported
template definition may reference). These are not fully implemented.