diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-08-10 18:15:51 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2016-08-10 18:15:51 +0000 |
commit | cdfdb4f1109361be236cf1f0289bab40afd41ed4 (patch) | |
tree | 56cf14c0ce374ed95ed51f59c3622c6eeb619b9d | |
parent | 9d278b60402744775342cceffd1f18d4e84b85bb (diff) | |
download | bcm5719-llvm-cdfdb4f1109361be236cf1f0289bab40afd41ed4.tar.gz bcm5719-llvm-cdfdb4f1109361be236cf1f0289bab40afd41ed4.zip |
[Release Notes] Consistency in Clang-tidy entries' style.
llvm-svn: 278262
-rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index 20ee2c3e3a5..0a8d12db053 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -72,9 +72,8 @@ Improvements to clang-tidy - New `performance-inefficient-string-concatenation <http://clang.llvm.org/extra/clang-tidy/checks/performance-inefficient-string-concatenation.html>`_ check - This check warns about the performance overhead arising from concatenating - strings using the ``operator+``, instead of ``operator+=``. - + Warns about the performance overhead arising from concatenating strings using + the ``operator+``, instead of ``operator+=``. Improvements to include-fixer ----------------------------- |