Fix comment typo
authorEli Bendersky <eliben@google.com>
Wed, 26 Dec 2012 18:15:42 +0000 (18:15 +0000)
committerEli Bendersky <eliben@google.com>
Wed, 26 Dec 2012 18:15:42 +0000 (18:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171113 91177308-0d34-0410-b5e6-96231b3b80d8

utils/lit/lit/TestRunner.py

index 652e8b499c5cd6521e76bff80627ae7d31f72c14..75182b86fde270a4739133354ede1c1ae2b98526 100644 (file)
@@ -77,7 +77,7 @@ def executeShCmd(cmd, cfg, cwd, results):
     # output. This is null until we have seen some output using
     # stderr.
     for i,j in enumerate(cmd.commands):
-        # Apply the redirections, we use (N,) as a sentinal to indicate stdin,
+        # Apply the redirections, we use (N,) as a sentinel to indicate stdin,
         # stdout, stderr for N equal to 0, 1, or 2 respectively. Redirects to or
         # from a file are represented with a list [file, mode, file-object]
         # where file-object is initially None.