From ab42f6c921830e38f5b9b1c35d3bfd321e618811 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 6 Jun 2024 18:57:01 +0900 Subject: [PATCH] docs: update basics.md minor fix --- models/WizardCoder/demo/third_party/simdjson/doc/basics.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/WizardCoder/demo/third_party/simdjson/doc/basics.md b/models/WizardCoder/demo/third_party/simdjson/doc/basics.md index 8ec86c82..c1322bfc 100755 --- a/models/WizardCoder/demo/third_party/simdjson/doc/basics.md +++ b/models/WizardCoder/demo/third_party/simdjson/doc/basics.md @@ -727,9 +727,9 @@ auto points_json = R"( [ for (ondemand::object points : parser.iterate(points_json)) { // Iterating through an object, you iterate through key-value pairs (a 'field'). for (auto point : points) { - // Get the key corresponding the the field 'point'. + // Get the key corresponding the field 'point'. cout << "id: " << std::string_view(point.unescaped_key()) << ": ("; - // Get the value corresponding the the field 'point'. + // Get the value corresponding the field 'point'. ondemand::object xyz = point.value(); cout << xyz["x"].get_double() << ", "; cout << xyz["y"].get_double() << ", ";