[lldb] Clarify docstring for SBBlock::IsInlined, NFC
authorVedant Kumar <vsk@apple.com>
Thu, 17 Sep 2020 23:53:17 +0000 (16:53 -0700)
committerVedant Kumar <vsk@apple.com>
Thu, 17 Sep 2020 23:54:58 +0000 (16:54 -0700)
Previously, there was a little ambiguity about whether IsInlined should
return true for an inlined lexical block, since technically the lexical
block would not represent an inlined function (it'd just be contained
within one).

Edit suggested by Jim Ingham.

lldb/bindings/interface/SBBlock.i

index 812b41fe5c3ea7c513a202dbf87fae6e220284cc..3972b939b18b967cf375d0deaa6f82dc0d8a6eaf 100644 (file)
@@ -22,7 +22,7 @@ public:
     ~SBBlock ();
 
     %feature("docstring",
-    "Does this block represent an inlined function?"
+    "Is this block contained within an inlined function?"
     ) IsInlined;
     bool
     IsInlined () const;