From 3215f836b52a1719958f27905f3caec235980349 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Tue, 18 Sep 2012 04:43:05 +0000 Subject: [PATCH] Fix a typo. No functional change. llvm-svn: 164100 --- llvm/include/llvm/Support/Compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/Compiler.h b/llvm/include/llvm/Support/Compiler.h index 85e9befc0c7e..7ceeb3212119 100644 --- a/llvm/include/llvm/Support/Compiler.h +++ b/llvm/include/llvm/Support/Compiler.h @@ -40,7 +40,7 @@ /// LLVM_DELETED_FUNCTION - Expands to = delete if the compiler supports it. /// Use to mark functions as uncallable. Member functions with this should -/// be declared private so that some behaivor is kept in C++03 mode. +/// be declared private so that some behavior is kept in C++03 mode. /// /// class DontCopy { /// private: