From e4f02eceeae41c07a40408483e76e6723909250b Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Thu, 31 Jul 2014 18:12:17 +0000 Subject: [PATCH] Reformat docstring to 80-col llvm-svn: 214412 --- clang/bindings/python/clang/cindex.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clang/bindings/python/clang/cindex.py b/clang/bindings/python/clang/cindex.py index 517b3c1bac6e..34e08602b834 100644 --- a/clang/bindings/python/clang/cindex.py +++ b/clang/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)