From: Sanjoy Das Date: Thu, 20 Apr 2017 23:07:00 +0000 (+0000) Subject: Fix typo in comment X-Git-Tag: llvmorg-5.0.0-rc1~7105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e748e92202a83f0224bf682213b485fa25b6d26;p=platform%2Fupstream%2Fllvm.git Fix typo in comment llvm-svn: 300918 --- diff --git a/llvm/include/llvm/IR/ConstantRange.h b/llvm/include/llvm/IR/ConstantRange.h index 47004e8..fd7f96a 100644 --- a/llvm/include/llvm/IR/ConstantRange.h +++ b/llvm/include/llvm/IR/ConstantRange.h @@ -93,7 +93,7 @@ public: /// /// NB! The returned set does *not* contain **all** possible values of X for /// which "X BinOpC Y" does not wrap -- some viable values of X may be - /// missing, so you cannot use this to contrain X's range. E.g. in the last + /// missing, so you cannot use this to constrain X's range. E.g. in the last /// example, "(-2) + 1" is both nsw and nuw (so the "X" could be -2), but (-2) /// is not in the set returned. ///