Skip to content

Commit 90c3080

Browse files
authored
Merge branch 'master' into errorinfo
2 parents aab0cc8 + 8190e06 commit 90c3080

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/json/value.h

+4-4
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)