summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-12-07 18:11:54 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-12-07 18:11:54 +0000
commit6511988cd477db280c7e1057af81025a40039811 (patch)
treeeeb1fd0037979e47688f17ede8c7d7bcb4afaa55 /include
parenta35c1b94317db95856a9e3bf2dc3cc9edd045d61 (diff)
downloadllvm-6511988cd477db280c7e1057af81025a40039811.tar.gz
llvm-6511988cd477db280c7e1057af81025a40039811.tar.bz2
llvm-6511988cd477db280c7e1057af81025a40039811.tar.xz
Fix spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121156 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/AlignOf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/AlignOf.h b/include/llvm/Support/AlignOf.h
index 979e5975aa..cebfa7982d 100644
--- a/include/llvm/Support/AlignOf.h
+++ b/include/llvm/Support/AlignOf.h
@@ -49,7 +49,7 @@ struct AlignOf {
};
-/// alignOf - A templated function that returns the mininum alignment of
+/// alignOf - A templated function that returns the minimum alignment of
/// of a type. This provides no extra functionality beyond the AlignOf
/// class besides some cosmetic cleanliness. Example usage:
/// alignOf<int>() returns the alignment of an int.