Skip to content

Commit 0fc5205

Browse files
committed
Quick fix to the progress formatting
1 parent 0fb2f52 commit 0fc5205

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)