Documentation cleanup: Escaped backslashes in Doxygen comments.

llvm-svn: 158567
This commit is contained in:
James Dennett 2012-06-15 22:33:08 +00:00
parent 1bc5f0c7ef
commit a2449fea5b
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ raw_ostream &RewriteBuffer::write(raw_ostream &os) const {
}
/// \brief Return true if this character is non-new-line whitespace:
/// ' ', '\t', '\f', '\v', '\r'.
/// ' ', '\\t', '\\f', '\\v', '\\r'.
static inline bool isWhitespace(unsigned char c) {
switch (c) {
case ' ':