Skip to content

Commit 5bdbd27

Browse files
authored
Merge pull request #2010 from InSyncWithFoo/gh-pages
Fix a few typos in `percentage`'s doc comments
2 parents a4aefdb + 2951a08 commit 5bdbd27

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

_specifications/base/0.9/specification.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -505,10 +505,10 @@ export interface WorkDoneProgressBegin {
505505
/**
506506
* Optional progress percentage to display (value 100 is considered 100%).
507507
* If not provided infinite progress is assumed and clients are allowed
508-
* to ignore the `percentage` value in subsequent in report notifications.
508+
* to ignore the `percentage` value in subsequent report notifications.
509509
*
510510
* The value should be steadily rising. Clients are free to ignore values
511-
* that are not following this rule. The value range is [0, 100]
511+
* that are not following this rule. The value range is [0, 100].
512512
*/
513513
percentage?: uinteger;
514514
}
@@ -543,10 +543,10 @@ export interface WorkDoneProgressReport {
543543
/**
544544
* Optional progress percentage to display (value 100 is considered 100%).
545545
* If not provided infinite progress is assumed and clients are allowed
546-
* to ignore the `percentage` value in subsequent in report notifications.
546+
* to ignore the `percentage` value in subsequent report notifications.
547547
*
548548
* The value should be steadily rising. Clients are free to ignore values
549-
* that are not following this rule. The value range is [0, 100]
549+
* that are not following this rule. The value range is [0, 100].
550550
*/
551551
percentage?: uinteger;
552552
}

_specifications/lsp/3.17/metaModel/metaModel.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6327,7 +6327,7 @@
63276327
"name": "uinteger"
63286328
},
63296329
"optional": true,
6330-
"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent in report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]."
6330+
"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]."
63316331
}
63326332
]
63336333
},
@@ -6366,7 +6366,7 @@
63666366
"name": "uinteger"
63676367
},
63686368
"optional": true,
6369-
"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent in report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]"
6369+
"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]."
63706370
}
63716371
]
63726372
},

_specifications/lsp/3.17/types/workDoneProgress.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ export interface WorkDoneProgressBegin {
4040
/**
4141
* Optional progress percentage to display (value 100 is considered 100%).
4242
* If not provided infinite progress is assumed and clients are allowed
43-
* to ignore the `percentage` value in subsequent in report notifications.
43+
* to ignore the `percentage` value in subsequent report notifications.
4444
*
4545
* The value should be steadily rising. Clients are free to ignore values
46-
* that are not following this rule. The value range is [0, 100]
46+
* that are not following this rule. The value range is [0, 100].
4747
*/
4848
percentage?: uinteger;
4949
}
@@ -79,10 +79,10 @@ export interface WorkDoneProgressReport {
7979
/**
8080
* Optional progress percentage to display (value 100 is considered 100%).
8181
* If not provided infinite progress is assumed and clients are allowed
82-
* to ignore the `percentage` value in subsequent in report notifications.
82+
* to ignore the `percentage` value in subsequent report notifications.
8383
*
8484
* The value should be steadily rising. Clients are free to ignore values
85-
* that are not following this rule. The value range is [0, 100]
85+
* that are not following this rule. The value range is [0, 100].
8686
*/
8787
percentage?: uinteger;
8888
}

_specifications/lsp/3.18/metaModel/metaModel.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6362,7 +6362,7 @@
63626362
"name": "uinteger"
63636363
},
63646364
"optional": true,
6365-
"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent in report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]."
6365+
"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]."
63666366
}
63676367
]
63686368
},
@@ -6401,7 +6401,7 @@
64016401
"name": "uinteger"
64026402
},
64036403
"optional": true,
6404-
"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent in report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]"
6404+
"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]."
64056405
}
64066406
]
64076407
},

_specifications/lsp/3.18/types/workDoneProgress.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export interface WorkDoneProgressBegin {
4040
/**
4141
* Optional progress percentage to display (value 100 is considered 100%).
4242
* If not provided infinite progress is assumed and clients are allowed
43-
* to ignore the `percentage` value in subsequent in report notifications.
43+
* to ignore the `percentage` value in subsequent report notifications.
4444
*
4545
* The value should be steadily rising. Clients are free to ignore values
4646
* that are not following this rule. The value range is [0, 100].
@@ -79,7 +79,7 @@ export interface WorkDoneProgressReport {
7979
/**
8080
* Optional progress percentage to display (value 100 is considered 100%).
8181
* If not provided infinite progress is assumed and clients are allowed
82-
* to ignore the `percentage` value in subsequent in report notifications.
82+
* to ignore the `percentage` value in subsequent report notifications.
8383
*
8484
* The value should be steadily rising. Clients are free to ignore values
8585
* that are not following this rule. The value range is [0, 100].

0 commit comments

Comments
 (0)