aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-11-08 22:15:02 +0000
committerBill Wendling <isanbard@gmail.com>2013-11-08 22:15:02 +0000
commit3a306f96804fd02c00acc51b6a77fdbec9ca44f6 (patch)
tree3bad3c1d725341caaf5a8e9f53fffa6710ba21e8 /docs
parent0464e09c7ba8e436e6caed06b0377cdeddc3e3ec (diff)
downloadclang-3a306f96804fd02c00acc51b6a77fdbec9ca44f6.tar.gz
Fix grammar-o.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@194283 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ClangTools.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ClangTools.rst b/docs/ClangTools.rst
index ba1eac85c0..f8a7c366db 100644
--- a/docs/ClangTools.rst
+++ b/docs/ClangTools.rst
@@ -88,8 +88,8 @@ Clang-format is both a :doc:`library <LibFormat>` and a :doc:`stand-alone tool
<ClangFormat>` with the goal of automatically reformatting C++ sources files
according to configurable style guides. To do so, clang-format uses Clang's
``Lexer`` to transform an input file into a token stream and then changes all
-the whitespace around those tokens. The goal is for clang-format to both serve
-both as a user tool (ideally with powerful IDE integrations) and part of other
+the whitespace around those tokens. The goal is for clang-format to serve both
+as a user tool (ideally with powerful IDE integrations) and as part of other
refactoring tools, e.g. to do a reformatting of all the lines changed during a
renaming.