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); }