diff options
author | Jim Ingham <jingham@apple.com> | 2021-02-09 17:48:04 -0800 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2021-02-09 17:48:47 -0800 |
commit | 483ec136da7193de781a5284f1c37929cc27c05c (patch) | |
tree | 4fdd451e308dc61f96a784deb5828915632d3b7e /lldb/source/Commands/CommandObjectBreakpointCommand.cpp | |
parent | 74c3615997472b44ef77fedd7914d376f5e45ad7 (diff) | |
download | llvm-483ec136da7193de781a5284f1c37929cc27c05c.zip llvm-483ec136da7193de781a5284f1c37929cc27c05c.tar.gz llvm-483ec136da7193de781a5284f1c37929cc27c05c.tar.bz2 |
Use internal_dict everywhere we refer to the python session dict in docs.
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpointCommand.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpointCommand.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp index 1b21495..3489b5c 100644 --- a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp @@ -119,12 +119,12 @@ to supply the function name prepended by the module name:" The function itself must have either of the following prototypes: -def breakpoint_callback(frame, bp_loc, dict): +def breakpoint_callback(frame, bp_loc, internal_dict): # Your code goes here or: -def breakpoint_callback(frame, bp_loc, extra_args, dict): +def breakpoint_callback(frame, bp_loc, extra_args, internal_dict): # Your code goes here )" |