Skip to content

Commit c942934

Browse files
committed
Drop markdown backticks for codeblock
1 parent f6e8366 commit c942934

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lldb/bindings/interface/SBProcessDocstrings.i

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,11 @@ SBProcess supports thread iteration. For example (from test/lldbutil.py), ::
261261

262262
%feature("docstring", "
263263
Get a list of all the memory regions associated with this process.
264-
```
265-
readable_regions = []
266-
for region in process.GetMemoryRegions():
267-
if region.IsReadable():
268-
readable_regions.append(region)
269-
```
264+
265+
readable_regions = []
266+
for region in process.GetMemoryRegions():
267+
if region.IsReadable():
268+
readable_regions.append(region)
269+
270270
"
271271
) lldb::SBProcess::GetMemoryRegions;

0 commit comments

Comments
 (0)