summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaojian Wu <hokein@google.com>2017-03-31 07:55:22 +0000
committerHaojian Wu <hokein@google.com>2017-03-31 07:55:22 +0000
commit61f614676b88dead64de9bbd2d608388833e9db0 (patch)
treea2636ada6a09612cbcd8a068393f7a86e0afed17
parenta69426478d1342e636ccd081284334b200dda7e9 (diff)
downloadclang-tools-extra-61f614676b88dead64de9bbd2d608388833e9db0.tar.gz
[clang-tidy] Correct code-block in the doc.
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@299190 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/clang-tidy/checks/readability-container-size-empty.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/clang-tidy/checks/readability-container-size-empty.rst b/docs/clang-tidy/checks/readability-container-size-empty.rst
index c971ca7b..541320c7 100644
--- a/docs/clang-tidy/checks/readability-container-size-empty.rst
+++ b/docs/clang-tidy/checks/readability-container-size-empty.rst
@@ -18,7 +18,7 @@ the future.
The check issues warning if a container has ``size()`` and ``empty()`` methods
matching following signatures:
-code-block:: c++
+.. code-block:: c++
size_type size() const;
bool empty() const;