summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-09-20 03:58:32 +0000
committerChris Lattner <sabre@nondot.org>2010-09-20 03:58:32 +0000
commit209b257c68f20720ecf3f5c735587f1d30b5e10e (patch)
tree94b982c465504977403f53459df4e4238942381f /include
parente6af80d11dcd82f24fba8c80dea8eefdbc0165f6 (diff)
downloadllvm-209b257c68f20720ecf3f5c735587f1d30b5e10e.tar.gz
llvm-209b257c68f20720ecf3f5c735587f1d30b5e10e.tar.bz2
llvm-209b257c68f20720ecf3f5c735587f1d30b5e10e.tar.xz
fix a bug I introduced back in the hayday of version #2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114319 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/DerivedTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h
index 4bc1a7a904..721c603314 100644
--- a/include/llvm/DerivedTypes.h
+++ b/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.
//