Skip to content

Commit

Permalink
Fix grammar (extra the)
Browse files Browse the repository at this point in the history
  • Loading branch information
asashour committed May 23, 2022
1 parent 3d9b68a commit c3d3ac6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion _specifications/lsp/3.17/language/completion.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export interface CompletionClientCapabilities {
*/
completionList?: {
/**
* The client supports the the following itemDefaults on
* The client supports the following itemDefaults on
* a completion list.
*
* The value lists the supported property names of the
Expand Down
8 changes: 4 additions & 4 deletions _specifications/lsp/3.17/metaModel/metaModel.json
Original file line number Diff line number Diff line change
Expand Up @@ -5185,15 +5185,15 @@
"kind": "reference",
"name": "Range"
},
"documentation": "The range enclosing this symbol not including leading/trailing whitespace but everything else\nlike comments. This information is typically used to determine if the the clients cursor is\ninside the symbol to reveal in the symbol in the UI."
"documentation": "The range enclosing this symbol not including leading/trailing whitespace but everything else\nlike comments. This information is typically used to determine if the clients cursor is\ninside the symbol to reveal in the symbol in the UI."
},
{
"name": "selectionRange",
"type": {
"kind": "reference",
"name": "Range"
},
"documentation": "The range that should be selected and revealed when this symbol is being picked, e.g the name of a function.\nMust be contained by the the `range`."
"documentation": "The range that should be selected and revealed when this symbol is being picked, e.g the name of a function.\nMust be contained by the `range`."
},
{
"name": "children",
Expand Down Expand Up @@ -6209,7 +6209,7 @@
"kind": "reference",
"name": "Range"
},
"documentation": "The range that should be selected and revealed when this link is being followed, e.g the name of a function.\nMust be contained by the the `targetRange`. See also `DocumentSymbol#range`"
"documentation": "The range that should be selected and revealed when this link is being followed, e.g the name of a function.\nMust be contained by the `targetRange`. See also `DocumentSymbol#range`"
}
],
"documentation": "Represents the connection of two locations. Provides additional metadata over normal [locations](#Location),\nincluding an origin range."
Expand Down Expand Up @@ -11315,7 +11315,7 @@
}
},
"optional": true,
"documentation": "The client supports the the following itemDefaults on\na completion list.\n\nThe value lists the supported property names of the\n`CompletionList.itemDefaults` object. If omitted\nno properties are supported.\n\n@since 3.17.0",
"documentation": "The client supports the following itemDefaults on\na completion list.\n\nThe value lists the supported property names of the\n`CompletionList.itemDefaults` object. If omitted\nno properties are supported.\n\n@since 3.17.0",
"since": "3.17.0"
}
]
Expand Down
2 changes: 1 addition & 1 deletion _specifications/lsp/3.17/types/locationLink.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ interface LocationLink {

/**
* The range that should be selected and revealed when this link is being
* followed, e.g the name of a function. Must be contained by the the
* followed, e.g the name of a function. Must be contained by the
* `targetRange`. See also `DocumentSymbol#range`
*/
targetSelectionRange: Range;
Expand Down
2 changes: 1 addition & 1 deletion _specifications/specification-3-14.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ interface LocationLink {

/**
* The range that should be selected and revealed when this link is being followed, e.g the name of a function.
* Must be contained by the the `targetRange`. See also `DocumentSymbol#range`
* Must be contained by the `targetRange`. See also `DocumentSymbol#range`
*/
targetSelectionRange: Range;
}
Expand Down
2 changes: 1 addition & 1 deletion _specifications/specification-3-15.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ interface LocationLink {
/**
* The range that should be selected and revealed when this link is being
* followed, for example, the name of a function.
* Must be contained by the the `targetRange`.
* Must be contained by the `targetRange`.
* See also `DocumentSymbol#range`
*/
targetSelectionRange: Range;
Expand Down
2 changes: 1 addition & 1 deletion _specifications/specification-3-16.md
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ interface LocationLink {

/**
* The range that should be selected and revealed when this link is being
* followed, e.g the name of a function. Must be contained by the the
* followed, e.g the name of a function. Must be contained by the
* `targetRange`. See also `DocumentSymbol#range`
*/
targetSelectionRange: Range;
Expand Down

0 comments on commit c3d3ac6

Please sign in to comment.