From 6d7c25bbf9c13303b6e84cb07d815de70c33404c Mon Sep 17 00:00:00 2001 From: Jinsong Ji Date: Fri, 10 Apr 2020 15:03:16 +0000 Subject: [PATCH] [NFC][UpdateTestChecks] Fix typos in comments --- llvm/utils/UpdateTestChecks/asm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/utils/UpdateTestChecks/asm.py b/llvm/utils/UpdateTestChecks/asm.py index 5747e45..998d8b1 100644 --- a/llvm/utils/UpdateTestChecks/asm.py +++ b/llvm/utils/UpdateTestChecks/asm.py @@ -229,11 +229,11 @@ def scrub_asm_powerpc(asm, args): asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm) # Expand the tabs used for indentation. asm = string.expandtabs(asm, 2) - # Stripe unimportant comments, but leave the token '#' in place. + # Strip unimportant comments, but leave the token '#' in place. asm = common.SCRUB_LOOP_COMMENT_RE.sub(r'#', asm) # Strip trailing whitespace. asm = common.SCRUB_TRAILING_WHITESPACE_RE.sub(r'', asm) - # Stripe the tailing token '#', except the line only has token '#'. + # Strip the tailing token '#', except the line only has token '#'. asm = common.SCRUB_TAILING_COMMENT_TOKEN_RE.sub(r'', asm) return asm -- 2.7.4