diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-27 08:26:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-27 08:26:07 +0000 |
commit | 83d5a2a7d5f933cfdba756e76b6c5cc2f61ac37e (patch) | |
tree | 6328d92e84d19f818e8d079ae47e78e85bc7ad70 /include/clang/Frontend/LangStandard.h | |
parent | b8bef26c8de6ae4ca6d80a9907f51a22a2561598 (diff) |
Fix typo, thanks Sebastian!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89999 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/LangStandard.h')
-rw-r--r-- | include/clang/Frontend/LangStandard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Frontend/LangStandard.h b/include/clang/Frontend/LangStandard.h index e742a3dad7..1442cb64e2 100644 --- a/include/clang/Frontend/LangStandard.h +++ b/include/clang/Frontend/LangStandard.h @@ -56,7 +56,7 @@ public: /// isCPlusPlus0x - Language is a C++0x variant. bool isCPlusPlus0x() const { return Flags & frontend::CPlusPlus0x; } - /// hasDigraphs - Language supports diagrphs. + /// hasDigraphs - Language supports digraphs. bool hasDigraphs() const { return Flags & frontend::Digraphs; } /// isGNUMode - Language includes GNU extensions. |