[Documentation] Improve consistency.
authorEugene Zelenko <eugene.zelenko@gmail.com>
Wed, 10 Aug 2016 22:00:49 +0000 (22:00 +0000)
committerEugene Zelenko <eugene.zelenko@gmail.com>
Wed, 10 Aug 2016 22:00:49 +0000 (22:00 +0000)
Mention Clang-rename Emacs integration in release notes.

llvm-svn: 278295

clang-tools-extra/docs/ReleaseNotes.rst
clang-tools-extra/docs/clang-rename.rst
clang-tools-extra/docs/include-fixer.rst

index 0a8d12d..eaf2e17 100644 (file)
@@ -54,7 +54,7 @@ The improvements are...
 Improvements to clang-rename
 ----------------------------
 
-The improvements are...
+- Emacs integration was added.
 
 Improvements to clang-tidy
 --------------------------
index 382998f..8e5aba6 100644 (file)
@@ -70,7 +70,7 @@ Alternatively, old name / new name pairs can be put into a YAML file:
   ...
 
 
-That way you can avoid spelling out all the names as commandline arguments:
+That way you can avoid spelling out all the names as command line arguments:
 
 .. code-block:: console
 
@@ -122,12 +122,12 @@ The YAML file also supports offsets:
   clang-rename rename-at options:
 
     -export-fixes=<filename>   - YAML file to store suggested fixes in.
-    -extra-arg=<string>        - Additional argument to append to the compiler command line
-    -extra-arg-before=<string> - Additional argument to prepend to the compiler command line
+    -extra-arg=<string>        - Additional argument to append to the compiler command line.
+    -extra-arg-before=<string> - Additional argument to prepend to the compiler command line.
     -i                         - Overwrite edited <file>s.
     -new-name=<string>         - The new name to change the symbol to.
     -offset=<uint>             - Locates the symbol by offset as opposed to <line>:<column>.
-    -p=<string>                - Build path
+    -p=<string>                - Build path.
     -pl                        - Print the locations affected by renaming to stderr.
     -pn                        - Print the found symbol's name prior to renaming to stderr.
 
@@ -144,21 +144,21 @@ The YAML file also supports offsets:
 
   Generic Options:
 
-    -help                      - Display available options (-help-hidden for more)
-    -help-list                 - Display list of available options (-help-list-hidden for more)
-    -version                   - Display the version of this program
+    -help                      - Display available options (-help-hidden for more).
+    -help-list                 - Display list of available options (-help-list-hidden for more).
+    -version                   - Display the version of this program.
 
   clang-rename rename-all options:
 
     -export-fixes=<filename>   - YAML file to store suggested fixes in.
-    -extra-arg=<string>        - Additional argument to append to the compiler command line
-    -extra-arg-before=<string> - Additional argument to prepend to the compiler command line
+    -extra-arg=<string>        - Additional argument to append to the compiler command line.
+    -extra-arg-before=<string> - Additional argument to prepend to the compiler command line.
     -i                         - Overwrite edited <file>s.
     -input=<string>            - YAML file to load oldname-newname pairs from.
     -new-name=<string>         - The new name to change the symbol to.
     -offset=<uint>             - Locates the symbol by offset as opposed to <line>:<column>.
     -old-name=<string>         - The fully qualified name of the symbol, if -offset is not used.
-    -p=<string>                - Build path
+    -p=<string>                - Build path.
 
 
 Vim Integration
index ba1c69f..3d31200 100644 (file)
@@ -105,7 +105,7 @@ See ``clang-include-fixer.el`` for more details.
 How it Works
 ============
 
-To get the most information out of clang at parse time,
+To get the most information out of Clang at parse time,
 :program:`clang-include-fixer` runs in tandem with the parse and receives
 callbacks from Clang's semantic analysis. In particular it reuses the existing
 support for typo corrections. Whenever Clang tries to correct a potential typo