From a005f9400d727447da66f5bccfba3ea76627888e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 20 Sep 2010 03:58:32 +0000 Subject: [PATCH] fix a bug I introduced back in the hayday of version #2. llvm-svn: 114319 --- llvm/include/llvm/DerivedTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/DerivedTypes.h b/llvm/include/llvm/DerivedTypes.h index 4bc1a7a904c6..721c603314b2 100644 --- a/llvm/include/llvm/DerivedTypes.h +++ b/llvm/include/llvm/DerivedTypes.h @@ -9,7 +9,7 @@ // // This file contains the declarations of classes that represent "derived // types". These are things like "arrays of x" or "structure of x, y, z" or -// "method returning x taking (y,z) as parameters", etc... +// "function returning x taking (y,z) as parameters", etc... // // The implementations of these classes live in the Type.cpp file. //