From 0707eefd55c91587bb32696f9ba86dcd7dfd166b Mon Sep 17 00:00:00 2001 From: Sun Yiming Z Date: Thu, 18 Mar 2021 00:48:04 +0800 Subject: [PATCH] Update json_value.cpp fix boundry to boundary. --- src/lib_json/json_value.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_json/json_value.cpp b/src/lib_json/json_value.cpp index 378ea79..076bab4 100644 --- a/src/lib_json/json_value.cpp +++ b/src/lib_json/json_value.cpp @@ -1401,7 +1401,7 @@ void Value::Comments::set(CommentPlacement slot, String comment) { if (!ptr_) { ptr_ = std::unique_ptr(new Array()); } - // check comments array boundry. + // check comments array boundary. if (slot < CommentPlacement::numberOfCommentPlacement) { (*ptr_)[slot] = std::move(comment); }