Fix mispelled 'ling' Python property to be 'line' in
authorJason Molenda <jmolenda@apple.com>
Sat, 22 Nov 2014 00:00:17 +0000 (00:00 +0000)
committerJason Molenda <jmolenda@apple.com>
Sat, 22 Nov 2014 00:00:17 +0000 (00:00 +0000)
SBLineEntry and SBDeclaration.  Patch from Chris Willmore.
<rdar://problem/19054323>

llvm-svn: 222592

lldb/scripts/Python/interface/SBDeclaration.i
lldb/scripts/Python/interface/SBLineEntry.i

index 87e2f8e..e7a6b6d 100644 (file)
@@ -57,7 +57,7 @@ namespace lldb {
             if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
             
             __swig_getmethods__["line"] = GetLine
-            if _newclass: ling = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
+            if _newclass: line = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
             
             __swig_getmethods__["column"] = GetColumn
             if _newclass: column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
index ff67109..866178e 100644 (file)
@@ -88,7 +88,7 @@ public:
         if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
         
         __swig_getmethods__["line"] = GetLine
-        if _newclass: ling = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
+        if _newclass: line = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''')
         
         __swig_getmethods__["column"] = GetColumn
         if _newclass: column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')