aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-07-29 04:22:30 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-07-29 04:22:30 +0000
commit3638e9918c632ab517066d79790601d25de568c9 (patch)
tree65f50444607f3400c3f38a90de12e3bb0bd41146 /include/llvm/ADT
parentfc63adb1b942eac000e498af0402dfe1f82e2c84 (diff)
downloadexternal_llvm-3638e9918c632ab517066d79790601d25de568c9.zip
external_llvm-3638e9918c632ab517066d79790601d25de568c9.tar.gz
external_llvm-3638e9918c632ab517066d79790601d25de568c9.tar.bz2
Fix typo in comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15318 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/SetVector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/SetVector.h b/include/llvm/ADT/SetVector.h
index 5945f95..c72f49b 100644
--- a/include/llvm/ADT/SetVector.h
+++ b/include/llvm/ADT/SetVector.h
@@ -26,7 +26,7 @@ namespace llvm {
/// This class provides a way to keep a set of things that also has the
/// property of a deterministic iteration order. The order of iteration is the
/// order of insertion.
-/// @breif A vector that has set insertion semantics.
+/// @brief A vector that has set insertion semantics.
template <typename T>
class SetVector {
public: