]> granicus.if.org Git - clang/commitdiff
Fix typos in LibASTImporter.rst
authorGabor Marton <gabor.marton@ericsson.com>
Fri, 16 Aug 2019 12:21:49 +0000 (12:21 +0000)
committerGabor Marton <gabor.marton@ericsson.com>
Fri, 16 Aug 2019 12:21:49 +0000 (12:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@369099 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LibASTImporter.rst

index fff7ef5858893abc54268200ee770fde5df1c3b0..6593536f2cc3aef2587a451ff6a2642fa07d7114 100644 (file)
@@ -255,7 +255,7 @@ Putting this all together here is how the source of the tool looks like:
     return 0;
   };
 
-We may extend the ``CmakeLists.txt`` under let's say ``clang/tools`` with the build and link instructions:
+We may extend the ``CMakeLists.txt`` under let's say ``clang/tools`` with the build and link instructions:
 
 .. code-block:: bash
 
@@ -554,7 +554,7 @@ What's more there is a third prototype declaration merged to the chain.
 The functions are merged in a way that prototypes are added to the redecl chain if they refer to the same type, but we can have only one definition.
 The first two declarations are from ``bar.ast``, the third is from ``main.ast``.
 
-Now, Let's create an object file from the merged AST:
+Now, let's create an object file from the merged AST:
 
 .. code-block:: bash