diff options
author | Alexander Kornienko <alexfh@google.com> | 2016-05-20 22:42:03 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2016-05-20 22:42:03 +0000 |
commit | 1c6d827015d89b6ab09068bff357abf01e0bf434 (patch) | |
tree | c25ecc1022a257e3ee1f0b135fcd2dbe4b9c1526 | |
parent | 95e84c5123a12c93ab45caceafa6438f82467626 (diff) | |
download | bcm5719-llvm-1c6d827015d89b6ab09068bff357abf01e0bf434.tar.gz bcm5719-llvm-1c6d827015d89b6ab09068bff357abf01e0bf434.zip |
Fix docs
llvm-svn: 270288
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/modernize-avoid-bind.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/checks/modernize-avoid-bind.rst b/clang-tools-extra/docs/clang-tidy/checks/modernize-avoid-bind.rst index e56fa89bd31..86b91aee36c 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/modernize-avoid-bind.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/modernize-avoid-bind.rst @@ -10,13 +10,13 @@ Right now it only handles free functions, not member 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; |