diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-02-14 00:23:04 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-02-14 00:23:04 +0000 |
commit | 3a09444debc457a70110e917eeb6ca9a8e8bb84f (patch) | |
tree | b21e62be158a9a8810aca07b3722f9530082cea8 | |
parent | 7cdc31147b4a8a5bc9681097744ba4583dc0b91a (diff) |
Actually fix rendering of the example code block!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175113 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/LanguageExtensions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LanguageExtensions.rst b/docs/LanguageExtensions.rst index dd54cfff5c..014e2645d8 100644 --- a/docs/LanguageExtensions.rst +++ b/docs/LanguageExtensions.rst @@ -1957,7 +1957,7 @@ Clang implements two kinds of checks with this attribute. Another example: - .. code-block: c + .. code-block:: c __attribute__((__format__ (__printf__, 1, 3))) void foo(const char* s, char *buf, ...) { |