From 4550154d31c0592e3c1eb52193ecaaa3b7e88071 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Sat, 11 Sep 2010 00:23:59 +0000 Subject: [PATCH] Fixed some comments. llvm-svn: 113673 --- lldb/include/lldb/Interpreter/ScriptInterpreter.h | 2 +- lldb/include/lldb/Interpreter/ScriptInterpreterPython.h | 2 +- lldb/source/Commands/CommandObjectBreakpointCommand.cpp | 2 +- lldb/source/Commands/CommandObjectBreakpointCommand.h | 1 + lldb/source/Interpreter/ScriptInterpreterPython.cpp | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lldb/include/lldb/Interpreter/ScriptInterpreter.h b/lldb/include/lldb/Interpreter/ScriptInterpreter.h index 367970e8739d..b1511d4ce67e 100644 --- a/lldb/include/lldb/Interpreter/ScriptInterpreter.h +++ b/lldb/include/lldb/Interpreter/ScriptInterpreter.h @@ -77,7 +77,7 @@ public: BreakpointOptions *bp_options, CommandReturnObject &result); - /// Set a one-liner as the callback for the breakpoint command. + /// Set a one-liner as the callback for the breakpoint. virtual void SetBreakpointCommandCallback (CommandInterpreter &interpreter, BreakpointOptions *bp_options, diff --git a/lldb/include/lldb/Interpreter/ScriptInterpreterPython.h b/lldb/include/lldb/Interpreter/ScriptInterpreterPython.h index e24d0efefea4..4effd15603f0 100644 --- a/lldb/include/lldb/Interpreter/ScriptInterpreterPython.h +++ b/lldb/include/lldb/Interpreter/ScriptInterpreterPython.h @@ -62,7 +62,7 @@ public: BreakpointOptions *bp_options, CommandReturnObject &result); - /// Set a one-liner as the callback for the breakpoint command. + /// Set a Python one-liner as the callback for the breakpoint. void SetBreakpointCommandCallback (CommandInterpreter &interpreter, BreakpointOptions *bp_options, diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp index 49ee1ea15eb6..84f402cbf90d 100644 --- a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp @@ -382,7 +382,7 @@ CommandObjectBreakpointCommandAdd::CollectDataForBreakpointCommandCallback } -// Set a one-liner as the callback for the breakpoint command. +// Set a one-liner as the callback for the breakpoint. void CommandObjectBreakpointCommandAdd::SetBreakpointCommandCallback (CommandInterpreter &interpreter, BreakpointOptions *bp_options, diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.h b/lldb/source/Commands/CommandObjectBreakpointCommand.h index 262ef1fb0901..e315515a28cf 100644 --- a/lldb/source/Commands/CommandObjectBreakpointCommand.h +++ b/lldb/source/Commands/CommandObjectBreakpointCommand.h @@ -74,6 +74,7 @@ public: BreakpointOptions *bp_options, CommandReturnObject &result); + /// Set a one-liner as the callback for the breakpoint. void SetBreakpointCommandCallback (CommandInterpreter &interpreter, BreakpointOptions *bp_options, diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index ea8a11c2471e..ffb2c9b77107 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -653,7 +653,7 @@ ScriptInterpreterPython::CollectDataForBreakpointCommandCallback (CommandInterpr } } -// Set a Python one-liner as the callback for the breakpoint command. +// Set a Python one-liner as the callback for the breakpoint. void ScriptInterpreterPython::SetBreakpointCommandCallback (CommandInterpreter &interpreter, BreakpointOptions *bp_options,