diff options
author | Eli Bendersky <eliben@google.com> | 2013-04-18 20:49:17 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2013-04-18 20:49:17 +0000 |
commit | 8bb3b098b98cd62f074bb488d8294498ae8121e3 (patch) | |
tree | c45c76f037446773c1be9ea83d6b56239a037053 /include/llvm | |
parent | 8a6a7bb6a601061031cddd77129532a3b467300b (diff) | |
download | external_llvm-8bb3b098b98cd62f074bb488d8294498ae8121e3.zip external_llvm-8bb3b098b98cd62f074bb488d8294498ae8121e3.tar.gz external_llvm-8bb3b098b98cd62f074bb488d8294498ae8121e3.tar.bz2 |
Fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179793 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/ADT/Twine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/Twine.h b/include/llvm/ADT/Twine.h index cc290d5..e16c6b4 100644 --- a/include/llvm/ADT/Twine.h +++ b/include/llvm/ADT/Twine.h @@ -236,7 +236,7 @@ namespace llvm { /// getLHSKind - Get the NodeKind of the left-hand side. NodeKind getLHSKind() const { return (NodeKind) LHSKind; } - /// getRHSKind - Get the NodeKind of the left-hand side. + /// getRHSKind - Get the NodeKind of the right-hand side. NodeKind getRHSKind() const { return (NodeKind) RHSKind; } /// printOneChild - Print one child from a twine. |