Skip to content

Commit

Permalink
schema: Fix prepositions
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Nov 1, 2024
1 parent 9cb9ba8 commit 12012f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schema/extension-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"properties": {
"name": {
"title": "Name",
"description": "The sentence-case name of the extension.\n\nFor backwards compatibility, it is an object with keys being language codes (ISO 639-1) and values the name in that language.",
"description": "The sentence-case name of the extension.\n\nFor backwards compatibility, it is an object in which keys are language codes (ISO 639-1), and values are the name in that language.",
"type": "object",
"minProperties": 1,
"additionalProperties": false,
Expand All @@ -27,7 +27,7 @@
},
"description": {
"title": "Description",
"description": "The concise description of what the extension does.\n\nFor backwards compatibility, it is an object with keys being language codes (ISO 639-1) and values the description in that language.",
"description": "The concise description of the changes made by the extension, at a high level.\n\nFor backwards compatibility, it is an object in which keys are language codes (ISO 639-1), and values are the description in that language.",
"type": "object",
"minProperties": 1,
"additionalProperties": false,
Expand All @@ -40,7 +40,7 @@
},
"documentationUrl": {
"title": "Documentation URL",
"description": "The URL of the documentation for the extension. For example, the extension's GitHub page.\n\nFor backwards compatibility, it is an object with keys being language codes (ISO 639-1) and values the URL of the documentation in that language.",
"description": "The URL of the documentation for the extension. For example, the extension's GitHub page.\n\nFor backwards compatibility, it is an object in which keys are language codes (ISO 639-1), and values are the URL of the documentation in that language.",
"type": "object",
"minProperties": 1,
"additionalProperties": false,
Expand Down

0 comments on commit 12012f6

Please sign in to comment.