summaryrefslogtreecommitdiffstats
path: root/bindings/python
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2014-07-31 18:12:17 +0000
committerEli Bendersky <eliben@google.com>2014-07-31 18:12:17 +0000
commitf267659b4afbffa4c201934e27af0db57053a273 (patch)
tree23a10c1721c35a303bcae897084183ac6907acc6 /bindings/python
parent91aa8f05b598c19a13b1972505403a9697dba900 (diff)
Reformat docstring to 80-col
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@214412 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/python')
-rw-r--r--bindings/python/clang/cindex.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py
index 517b3c1bac..34e08602b8 100644
--- a/bindings/python/clang/cindex.py
+++ b/bindings/python/clang/cindex.py
@@ -1176,9 +1176,9 @@ class Cursor(Structure):
"""
Return the display name for the entity referenced by this cursor.
- The display name contains extra information that helps identify the cursor,
- such as the parameters of a function or template or the arguments of a
- class template specialization.
+ The display name contains extra information that helps identify the
+ cursor, such as the parameters of a function or template or the
+ arguments of a class template specialization.
"""
if not hasattr(self, '_displayname'):
self._displayname = conf.lib.clang_getCursorDisplayName(self)