Fix some grammar
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 19 Oct 2004 05:55:54 +0000 (05:55 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 19 Oct 2004 05:55:54 +0000 (05:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17141 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Darwin/Memory.cpp

index 974d1dbe104ed2a03d10c126d87ba2b5ca612068..5735ebac2aba3bd93b70dd787f115561989ec362 100644 (file)
@@ -21,14 +21,14 @@ namespace llvm {
 using namespace sys;
 
 //===----------------------------------------------------------------------===//
-//=== WARNING: Implementation here must contain only Darwin specific code 
+//=== WARNING: Implementation here must contain only Darwin-specific code 
 //===          and must not be generic UNIX code (see ../Unix/Memory.cpp)
 //===----------------------------------------------------------------------===//
 
 /// AllocateRWXMemory - Allocate a slab of memory with read/write/execute
 /// permissions.  This is typically used for JIT applications where we want
-/// to emit code to the memory then jump to it.  Getting this type of memory
-/// is very OS specific.
+/// to emit code to the memory and then jump to it.  Getting this type of memory
+/// is very OS-specific.
 ///
 MemoryBlock Memory::AllocateRWX(unsigned NumBytes) {
   if (NumBytes == 0) return MemoryBlock();