From 4104b908cce949b47aa65e683df428fbf547d6ab Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Sat, 22 Nov 2014 00:00:17 +0000 Subject: Fix mispelled 'ling' Python property to be 'line' in SBLineEntry and SBDeclaration. Patch from Chris Willmore. llvm-svn: 222592 --- lldb/scripts/Python/interface/SBDeclaration.i | 2 +- lldb/scripts/Python/interface/SBLineEntry.i | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/scripts/Python/interface') diff --git a/lldb/scripts/Python/interface/SBDeclaration.i b/lldb/scripts/Python/interface/SBDeclaration.i index 87e2f8ec670..e7a6b6d44b7 100644 --- a/lldb/scripts/Python/interface/SBDeclaration.i +++ b/lldb/scripts/Python/interface/SBDeclaration.i @@ -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.''') 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.''') -- cgit v1.2.3