Added forgotten noexcept.
[oota-llvm.git] / lib / Support / MemoryBuffer.cpp
index 03d2d7d2b889572fe03c2b75d0ecc167b4568be8..9506da77704aa5cae39ab25b41a4abc03f094829 100644 (file)
@@ -142,7 +142,7 @@ MemoryBuffer *MemoryBuffer::getNewUninitMemBuffer(size_t Size,
 }
 
 /// getNewMemBuffer - Allocate a new zero-initialized MemoryBuffer of the
-/// specified size. Note that the caller need not initializethe memory
+/// specified size. Note that the caller need not initialize the memory
 /// allocated by this method.  The memory is owned by the MemoryBuffer object.
 MemoryBuffer *MemoryBuffer::getNewMemBuffer(size_t Size, StringRef BufferName) {
   MemoryBuffer *SB = getNewUninitMemBuffer(Size, BufferName);