From 001762bb250b6b9afe22055a2665a03113969695 Mon Sep 17 00:00:00 2001 From: David Greene Date: Wed, 23 Dec 2009 23:19:43 +0000 Subject: [PATCH] Fix a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92082 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/Debug.h b/include/llvm/Support/Debug.h index 73959841d3d..8651fc1abea 100644 --- a/include/llvm/Support/Debug.h +++ b/include/llvm/Support/Debug.h @@ -83,7 +83,7 @@ void SetCurrentDebugType(const char *Type); extern bool EnableDebugBuffering; /// dbgs() - This returns a reference to a raw_ostream for debugging -/// messages. If debugging is disabled it returns dbgs(). Use it +/// messages. If debugging is disabled it returns errs(). Use it /// like: dbgs() << "foo" << "bar"; raw_ostream &dbgs();