diff options
author | Sebastian Pop <spop@codeaurora.org> | 2012-02-06 05:29:29 +0000 |
---|---|---|
committer | Sebastian Pop <spop@codeaurora.org> | 2012-02-06 05:29:29 +0000 |
commit | 41a2600f6ab76ffe77bb05669dac7779707cc383 (patch) | |
tree | 4cb3392875105284fb59378207ce366ffa12c88e /lib/Support/JSONParser.cpp | |
parent | c05277ea8744adc1ac75541a078d8ebbb04233a6 (diff) |
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149856 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/JSONParser.cpp')
-rw-r--r-- | lib/Support/JSONParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/JSONParser.cpp b/lib/Support/JSONParser.cpp index 0832ec326d..5dfcf297a7 100644 --- a/lib/Support/JSONParser.cpp +++ b/lib/Support/JSONParser.cpp @@ -29,7 +29,7 @@ JSONParser::JSONParser(StringRef Input, SourceMgr *SM) JSONValue *JSONParser::parseRoot() { if (Position != InputBuffer->getBuffer().begin()) - report_fatal_error("Cannot resuse JSONParser."); + report_fatal_error("Cannot reuse JSONParser."); if (isWhitespace()) nextNonWhitespace(); if (errorIfAtEndOfFile("'[' or '{' at start of JSON text")) |