summaryrefslogtreecommitdiff
path: root/docs/tools
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2015-10-06 12:11:51 +0000
committerDaniel Jasper <djasper@google.com>2015-10-06 12:11:51 +0000
commitc8ebad79a50382d4931263f66271da3fdba670f5 (patch)
tree86249e6a6b9e51a586cd5e70868828095419b5f1 /docs/tools
parentfa119ac1833b41e952beb48b80834a5bc119b04e (diff)
downloadclang-c8ebad79a50382d4931263f66271da3fdba670f5.tar.gz
clang-format: Add empty line before code-blocks in Docs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@249394 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tools')
-rwxr-xr-xdocs/tools/dump_format_style.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tools/dump_format_style.py b/docs/tools/dump_format_style.py
index 8d1323e8a1..3c04171044 100755
--- a/docs/tools/dump_format_style.py
+++ b/docs/tools/dump_format_style.py
@@ -87,7 +87,7 @@ class EnumValue:
def clean_comment_line(line):
if line == '/// \\code':
- return '.. code-block:: c++\n'
+ return '\n.. code-block:: c++\n'
if line == '/// \\endcode':
return ''
return line[4:] + '\n'