Skip to content

Commit 6d7c25b

Browse files
author
Jinsong Ji
committed
[NFC][UpdateTestChecks] Fix typos in comments
1 parent 3bc439b commit 6d7c25b

File tree

1 file changed

+2
-2
lines changed
  • llvm/utils/UpdateTestChecks

1 file changed

+2
-2
lines changed

llvm/utils/UpdateTestChecks/asm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,11 @@ def scrub_asm_powerpc(asm, args):
229229
asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm)
230230
# Expand the tabs used for indentation.
231231
asm = string.expandtabs(asm, 2)
232-
# Stripe unimportant comments, but leave the token '#' in place.
232+
# Strip unimportant comments, but leave the token '#' in place.
233233
asm = common.SCRUB_LOOP_COMMENT_RE.sub(r'#', asm)
234234
# Strip trailing whitespace.
235235
asm = common.SCRUB_TRAILING_WHITESPACE_RE.sub(r'', asm)
236-
# Stripe the tailing token '#', except the line only has token '#'.
236+
# Strip the tailing token '#', except the line only has token '#'.
237237
asm = common.SCRUB_TAILING_COMMENT_TOKEN_RE.sub(r'', asm)
238238
return asm
239239

0 commit comments

Comments
 (0)