[clang-tools-extra] r270288 - Fix docs
Alexander Kornienko via cfe-commits
cfe-commits at lists.llvm.org
Fri May 20 15:42:08 PDT 2016
Author: alexfh
Date: Fri May 20 17:42:03 2016
New Revision: 270288
URL: http://llvm.org/viewvc/llvm-project?rev=270288&view=rev
Log:
Fix docs
Modified:
clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-avoid-bind.rst
Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-avoid-bind.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-avoid-bind.rst?rev=270288&r1=270287&r2=270288&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-avoid-bind.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/modernize-avoid-bind.rst Fri May 20 17:42:03 2016
@@ -10,13 +10,13 @@ Right now it only handles free functions
Given:
-.. code:: C++
+.. code:: c++
int add(int x, int y) { return x + y; }
Then:
-.. code:: C++
+.. code:: c++
void f() {
int x = 2;
@@ -25,7 +25,7 @@ Then:
is replaced by:
-.. code:: C++
+.. code:: c++
void f() {
int x = 2;
More information about the cfe-commits
mailing list