File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -437,23 +437,23 @@ class JSON_API Value {
437437 // / \post type() is arrayValue
438438 void resize (ArrayIndex newSize);
439439
440- // @{
440+ // / @{
441441 // / Access an array element (zero based index). If the array contains less
442442 // / than index element, then null value are inserted in the array so that
443443 // / its size is index+1.
444444 // / (You may need to say 'value[0u]' to get your compiler to distinguish
445445 // / this from the operator[] which takes a string.)
446446 Value& operator [](ArrayIndex index);
447447 Value& operator [](int index);
448- // @}
448+ // / @}
449449
450- // @{
450+ // / @{
451451 // / Access an array element (zero based index).
452452 // / (You may need to say 'value[0u]' to get your compiler to distinguish
453453 // / this from the operator[] which takes a string.)
454454 const Value& operator [](ArrayIndex index) const ;
455455 const Value& operator [](int index) const ;
456- // @}
456+ // / @}
457457
458458 // / If the array contains at least index+1 elements, returns the element
459459 // / value, otherwise returns defaultValue.
You can’t perform that action at this time.
0 commit comments