Change the command 'breakpoint command remove' to 'breakpoint command delete',
to be more consistent with other commands.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@131848 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectBreakpointCommand.h b/source/Commands/CommandObjectBreakpointCommand.h
index 38f958b..65f72d0 100644
--- a/source/Commands/CommandObjectBreakpointCommand.h
+++ b/source/Commands/CommandObjectBreakpointCommand.h
@@ -130,16 +130,16 @@
 };
 
 //-------------------------------------------------------------------------
-// CommandObjectBreakpointCommandRemove
+// CommandObjectBreakpointCommandDelete
 //-------------------------------------------------------------------------
 
-class CommandObjectBreakpointCommandRemove : public CommandObject
+class CommandObjectBreakpointCommandDelete : public CommandObject
 {
 public:
-    CommandObjectBreakpointCommandRemove (CommandInterpreter &interpreter);
+    CommandObjectBreakpointCommandDelete (CommandInterpreter &interpreter);
 
     virtual
-    ~CommandObjectBreakpointCommandRemove ();
+    ~CommandObjectBreakpointCommandDelete ();
 
     virtual bool
     Execute (Args& command,