Daniele Bartolini vor 10 Jahren
Ursprung
Commit
e7fdc84002
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      src/core/json/json_types.h

+ 2 - 2
src/core/json/json_types.h

@@ -29,12 +29,12 @@ struct JsonValueType
 	};
 };
 
-/// Array of pointers to json-encoded strings.
+/// Array of pointers to json-encoded data.
 ///
 /// @ingroup JSON
 typedef Array<const char*> JsonArray;
 
-/// Map from key to pointers to json-encoded strings.
+/// Map from key to pointers to json-encoded data.
 ///
 /// @ingroup JSON
 typedef Map<FixedString, const char*> JsonObject;