summaryrefslogtreecommitdiffstats
path: root/docs/ProgrammersManual.rst
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2016-03-23 22:54:19 +0000
committerJustin Bogner <mail@justinbogner.com>2016-03-23 22:54:19 +0000
commit8b620f378386d6835bec71e575c82279bf780354 (patch)
treefa12d7a348419996e077161077727196ef1a90b4 /docs/ProgrammersManual.rst
parentfe3378bb83e4a93c0958d1d5017905b5f653b32f (diff)
docs: Fix a missing language in a code-block
This should fix the docs build. Spotted by spstarr, thanks! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@264209 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.rst')
-rw-r--r--docs/ProgrammersManual.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst
index 668a0a2aabe7..88a8f88ed32f 100644
--- a/docs/ProgrammersManual.rst
+++ b/docs/ProgrammersManual.rst
@@ -359,7 +359,7 @@ that inherits from the ErrorInfo utility:
Error values can be implicitly converted to bool: true for error, false for
success, enabling the following idiom:
-.. code-block::
+.. code-block:: c++
if (auto Err = mayFail())
return Err;