Fix a typo.
authorJohnny Chen <johnny.chen@apple.com>
Wed, 16 May 2012 22:01:10 +0000 (22:01 +0000)
committerJohnny Chen <johnny.chen@apple.com>
Wed, 16 May 2012 22:01:10 +0000 (22:01 +0000)
llvm-svn: 156952

lldb/tools/driver/Driver.cpp

index 18fb4cd..ec8f26b 100644 (file)
@@ -135,7 +135,7 @@ Driver::~Driver ()
 void
 Driver::CloseIOChannelFile ()
 {
-    // Write and End of File sequence to the file descriptor to ensure any
+    // Write an End of File sequence to the file descriptor to ensure any
     // read functions can exit.
     char eof_str[] = "\x04";
     ::write (m_editline_pty.GetMasterFileDescriptor(), eof_str, strlen(eof_str));