OSDN Git Service

Fix a typo (NFC)
authorVedant Kumar <vsk@apple.com>
Sat, 30 Apr 2016 00:32:54 +0000 (00:32 +0000)
committerVedant Kumar <vsk@apple.com>
Sat, 30 Apr 2016 00:32:54 +0000 (00:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268144 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/Error.h

index 113a123..4428afd 100644 (file)
@@ -87,7 +87,7 @@ private:
 /// without testing the return value will raise a runtime error, even if foo
 /// returns success.
 ///
-/// For Error instances representing failure, you must use the either the
+/// For Error instances representing failure, you must use either the
 /// handleErrors or handleAllErrors function with a typed handler. E.g.:
 ///
 ///   class MyErrorInfo : public ErrorInfo<MyErrorInfo> {