summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorgit <svn-admin@ruby-lang.org>2022-08-19 02:25:54 +0900
committergit <svn-admin@ruby-lang.org>2022-08-19 02:25:54 +0900
commit59da26789f11dfa56a029a72210998cdd2f84174 (patch)
tree42155891b1b32d64e1640cef223a8797d870d034 /misc
parent92603bbd6996000d2541edb22e0b2ecac646c3de (diff)
downloadruby-59da26789f11dfa56a029a72210998cdd2f84174.tar.gz
* remove trailing spaces. [ci skip]
Diffstat (limited to 'misc')
-rw-r--r--misc/lldb_rb/commands/command_template.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/lldb_rb/commands/command_template.py b/misc/lldb_rb/commands/command_template.py
index 843b66398f..8d46f14159 100644
--- a/misc/lldb_rb/commands/command_template.py
+++ b/misc/lldb_rb/commands/command_template.py
@@ -3,7 +3,7 @@
# 1. Copy it and rename the copy so it ends with `_command.py`.
# 2. Rename the class to something descriptive that ends with Command.
# 3. Change the program variable to be a descriptive command name
-# 4. Ensure you are inheriting from RbBaseCommand or another command that
+# 4. Ensure you are inheriting from RbBaseCommand or another command that
# implements the same interfact
import lldb
@@ -23,8 +23,8 @@ class TestCommand(RbBaseCommand):
# call is where our command logic will be implemented
def call(self, debugger, command, exe_ctx, result):
# This method will be called once the LLDB environment has been setup.
- # You will have access to self.target, self.process, self.frame, and
+ # You will have access to self.target, self.process, self.frame, and
# self.thread
- #
+ #
# This is where we should implement our command logic
pass