Showing with 1 addition and 1 deletion.
  1. +1 −1 std/json.d
2 changes: 1 addition & 1 deletion std/json.d
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ struct JSONValue
@property inout(JSONValue[]) arrayNoRef() inout pure @trusted
{
enforce!JSONException(type == JSON_TYPE.ARRAY,
"JSONValue is not an object");
"JSONValue is not an array");
return store.array;
}

Expand Down