diff options
author | Jason Molenda <jmolenda@apple.com> | 2014-11-22 00:00:17 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2014-11-22 00:00:17 +0000 |
commit | 4104b908cce949b47aa65e683df428fbf547d6ab (patch) | |
tree | 16383184234551439eca297070e183c1425fa7ab /lldb/scripts/Python/interface/SBLineEntry.i | |
parent | 125efd8d4f19af3a2c5f2165b75be4a02ab4254b (diff) | |
download | bcm5719-llvm-4104b908cce949b47aa65e683df428fbf547d6ab.tar.gz bcm5719-llvm-4104b908cce949b47aa65e683df428fbf547d6ab.zip |
Fix mispelled 'ling' Python property to be 'line' in
SBLineEntry and SBDeclaration. Patch from Chris Willmore.
<rdar://problem/19054323>
llvm-svn: 222592
Diffstat (limited to 'lldb/scripts/Python/interface/SBLineEntry.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBLineEntry.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/interface/SBLineEntry.i b/lldb/scripts/Python/interface/SBLineEntry.i index ff6710952c4..866178e7079 100644 --- a/lldb/scripts/Python/interface/SBLineEntry.i +++ b/lldb/scripts/Python/interface/SBLineEntry.i @@ -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.''') |