From 41a2600f6ab76ffe77bb05669dac7779707cc383 Mon Sep 17 00:00:00 2001 From: Sebastian Pop Date: Mon, 6 Feb 2012 05:29:29 +0000 Subject: [PATCH] fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149856 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/JSONParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/JSONParser.cpp b/lib/Support/JSONParser.cpp index 0832ec326df..5dfcf297a7e 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"))