Skip to content

Commit 59da267

Browse files
committed
* remove trailing spaces. [ci skip]
1 parent 92603bb commit 59da267

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

misc/lldb_rb/commands/command_template.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# 1. Copy it and rename the copy so it ends with `_command.py`.
44
# 2. Rename the class to something descriptive that ends with Command.
55
# 3. Change the program variable to be a descriptive command name
6-
# 4. Ensure you are inheriting from RbBaseCommand or another command that
6+
# 4. Ensure you are inheriting from RbBaseCommand or another command that
77
# implements the same interfact
88

99
import lldb
@@ -23,8 +23,8 @@ class TestCommand(RbBaseCommand):
2323
# call is where our command logic will be implemented
2424
def call(self, debugger, command, exe_ctx, result):
2525
# This method will be called once the LLDB environment has been setup.
26-
# You will have access to self.target, self.process, self.frame, and
26+
# You will have access to self.target, self.process, self.frame, and
2727
# self.thread
28-
#
28+
#
2929
# This is where we should implement our command logic
3030
pass

0 commit comments

Comments
 (0)