File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/utils/UpdateTestChecks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -229,11 +229,11 @@ def scrub_asm_powerpc(asm, args):
229
229
asm = common .SCRUB_WHITESPACE_RE .sub (r' ' , asm )
230
230
# Expand the tabs used for indentation.
231
231
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.
233
233
asm = common .SCRUB_LOOP_COMMENT_RE .sub (r'#' , asm )
234
234
# Strip trailing whitespace.
235
235
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 '#'.
237
237
asm = common .SCRUB_TAILING_COMMENT_TOKEN_RE .sub (r'' , asm )
238
238
return asm
239
239
You can’t perform that action at this time.
0 commit comments