From: Gabor Marton <gabor.marton@ericsson.com>
Date: Fri, 16 Aug 2019 12:21:49 +0000 (+0000)
Subject: Fix typos in LibASTImporter.rst
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df2d9221d77042d6b07a6025edf9e810f1801ef5;p=clang

Fix typos in LibASTImporter.rst

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@369099 91177308-0d34-0410-b5e6-96231b3b80d8
---

diff --git a/docs/LibASTImporter.rst b/docs/LibASTImporter.rst
index fff7ef5858..6593536f2c 100644
--- a/docs/LibASTImporter.rst
+++ b/docs/LibASTImporter.rst
@@ -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