Skip to content

Commit 1e17113

Browse files
authored
[LLDB][SBProgress] Quick fix to the progress formatting (#157561)
Earlier today I was looking at the SBProgress documentation with a colleague and found another instance where the swig block wasn't formatting correctly. I've adjusted the docs slightly to fix this. I don't actually know how to see a preview of our docstrings but I believe this will fix it. <img width="829" height="234" alt="image" src="https://github.com/user-attachments/assets/8ef3a2df-92b9-4157-a452-f5e1ec51aa9a" />
1 parent 5326b3b commit 1e17113

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/bindings/interface/SBProgressDocstrings.i

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ Additionally for Python, progress is supported in a with statement. ::
5757
with lldb.SBProgress('Non deterministic progress', 'Detail', lldb.SBDebugger) as progress:
5858
for i in range(10):
5959
progress.Increment(1)
60-
# The progress object is automatically finalized when the with statement
60+
...
6161
62+
The progress object is automatically finalized on the exit of the with block.
6263
") lldb::SBProgress;
6364

6465
%feature("docstring",

0 commit comments

Comments
 (0)