소스 검색

Fix typo in error message

Michał Zaremba 2 달 전
부모
커밋
c419a3c41a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/json/JsonParser.cpp

+ 1 - 1
lib/json/JsonParser.cpp

@@ -423,7 +423,7 @@ bool JsonParser::extractStruct(JsonNode & node)
 bool JsonParser::extractArray(JsonNode & node)
 {
 	if(currentDepth > settings.maxDepth)
-		error("Macimum allowed depth of json structure has been reached", true);
+		error("Maximum allowed depth of json structure has been reached", true);
 
 	currentDepth++;
 	auto guard = vstd::makeScopeGuard([this]()