Skip to content

Commit 05e4eed

Browse files
authored
fix typo in additionalProperties JSON Schema property description (#310)
1 parent 7140d70 commit 05e4eed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ const descriptions: { [prop: string]: string } = {
486486
maxProperties: l10n.t("The maximum number of properties an object can have. Inclusive."),
487487
minProperties: l10n.t("The minimum number of properties an object can have. Inclusive."),
488488
required: l10n.t("An array of strings that lists the names of all properties required on this object."),
489-
additionalProperties: l10n.t("Either a schema or a boolean. If a schema, used to validate all properties not matched by 'properties', 'propertyNames', or 'patternProperties'. If false, any properties not defined by the adajacent keywords will cause this schema to fail."),
489+
additionalProperties: l10n.t("Either a schema or a boolean. If a schema, used to validate all properties not matched by 'properties', 'propertyNames', or 'patternProperties'. If false, any properties not defined by the adjacent keywords will cause this schema to fail."),
490490
definitions: l10n.t("Not used for validation. Place subschemas here that you wish to reference inline with $ref."),
491491
properties: l10n.t("A map of property names to schemas for each property."),
492492
patternProperties: l10n.t("A map of regular expressions on property names to schemas for matching properties."),

0 commit comments

Comments
 (0)