Add missing 'n'.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 26 Jul 2013 20:44:45 +0000 (20:44 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 26 Jul 2013 20:44:45 +0000 (20:44 +0000)
Thanks to Han Finkel for noticing it.

llvm-svn: 187241

llvm/lib/Support/Unix/Program.inc

index 0605d53..a93a912 100644 (file)
@@ -186,7 +186,7 @@ static bool Execute(void **Data, StringRef Program, const char **args,
     posix_spawn_file_actions_t *FileActions = 0;
 
     // If we call posix_spawn_file_actions_addopen we have to make sure the
-    // c strings we pass to it stay alive until the call to posix_spaw,
+    // c strings we pass to it stay alive until the call to posix_spawn,
     // so we copy any StringRefs into this variable.
     std::string RedirectsStorage[3];