aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/MemoryBuffer.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-08-05 20:06:04 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-08-05 20:06:04 +0000
commit181b6c9cb5def44658d15848e34c5c45d973f065 (patch)
tree5831fafbe745d7f588731089d6b26c6468e315b9 /include/llvm/Support/MemoryBuffer.h
parent0713ca4255ec38b367dc6d2c68446db026b54e52 (diff)
downloadexternal_llvm-181b6c9cb5def44658d15848e34c5c45d973f065.zip
external_llvm-181b6c9cb5def44658d15848e34c5c45d973f065.tar.gz
external_llvm-181b6c9cb5def44658d15848e34c5c45d973f065.tar.bz2
Fix minor doxygen nits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/MemoryBuffer.h')
-rw-r--r--include/llvm/Support/MemoryBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/MemoryBuffer.h b/include/llvm/Support/MemoryBuffer.h
index d7e0317..bc61c34 100644
--- a/include/llvm/Support/MemoryBuffer.h
+++ b/include/llvm/Support/MemoryBuffer.h
@@ -23,7 +23,7 @@ namespace llvm {
/// of memory, and provides simple methods for reading files and standard input
/// into a memory buffer. In addition to basic access to the characters in the
/// file, this interface guarantees you can read one character past the end of
-/// the file, and that this character will read as '\0'.
+/// @verbatim the file, and that this character will read as '\0'. @endverbatim
class MemoryBuffer {
const char *BufferStart; // Start of the buffer.
const char *BufferEnd; // End of the buffer.