summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSven van Haastregt <sven.vanhaastregt@arm.com>2019-09-23 14:24:29 +0000
committerSven van Haastregt <sven.vanhaastregt@arm.com>2019-09-23 14:24:29 +0000
commit7222c4d949970f9bc1682c077c2e06eb99fc32bf (patch)
treeb1cfcc146df5f8c25c8832e12cff0c15eefa87f3 /docs
parentfb14563764056c509a6ff0e65058b756333f84ba (diff)
downloadclang-7222c4d949970f9bc1682c077c2e06eb99fc32bf.tar.gz
[docs] Fix some typos in InternalsManual
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@372614 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/InternalsManual.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/InternalsManual.rst b/docs/InternalsManual.rst
index b56abc1e1b..59f3cba699 100644
--- a/docs/InternalsManual.rst
+++ b/docs/InternalsManual.rst
@@ -859,7 +859,7 @@ benefits:
There are unfortunately exceptions to this general approach, such as:
- * A the first declaration of a redeclarable entity maintains a pointer to the
+ * The first declaration of a redeclarable entity maintains a pointer to the
most recent declaration of that entity, which naturally needs to change as
more declarations are parsed.
* Name lookup tables in declaration contexts change after the namespace
@@ -1913,7 +1913,7 @@ declarations like enums, classes, etc. if they are in anonymous namespaces.
Therefore, we filter the lookup results and consider only those which have the
same visibility as the declaration we currently import.
-We consider two declarations in two anonymous namsepaces to have the same
+We consider two declarations in two anonymous namespaces to have the same
visibility only if they are imported from the same AST context.
Strategies to Handle Conflicting Names
@@ -2134,7 +2134,7 @@ about them.
Finally, this is not just a problem for semantic analysis. The code generator
and other clients have to be able to fold constants (e.g., to initialize global
-variables) and has to handle a superset of what C99 allows. Further, these
+variables) and have to handle a superset of what C99 allows. Further, these
clients can benefit from extended information. For example, we know that
"``foo() || 1``" always evaluates to ``true``, but we can't replace the
expression with ``true`` because it has side effects.