Skip to content

Commit 934d444

Browse files
committed
Typos etc.
1 parent 24854e1 commit 934d444

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sanity/checker.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
4040
Your compiler should either be in your PATH, or else located where the
4141
environment variable LLVM_COMPILER_PATH indicates. It can also be used
42-
to indicatethe directory that contains the other LLVM tools such as
42+
to indicate the directory that contains the other LLVM tools such as
4343
llvm-link, and llvm-ar.
4444
4545
"""
@@ -94,9 +94,9 @@ def checkOS(self):
9494
def checkSwitch(self):
9595
compiler_type = os.getenv('LLVM_COMPILER')
9696
if compiler_type == 'clang':
97-
return (1, 'Good, we are using clang.\n')
97+
return (1, '\nGood, we are using clang.\n')
9898
elif compiler_type == 'dragonegg':
99-
return (2, 'OK, we are using dragonegg.\n')
99+
return (2, '\nOK, we are using dragonegg.\n')
100100
else:
101101
return (0, explain_LLVM_COMPILER)
102102

0 commit comments

Comments
 (0)