Skip to content

Commit 3dd85be

Browse files
author
Dimitri Ratz
committed
More understandable kind terms.
1 parent 92f7ebc commit 3dd85be

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

_specifications/lsp/3.18/language/references.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ export namespace ReferenceKind {
4949
/**
5050
* Statement with l-value usage of the selected variable.
5151
*/
52-
export const Lvalue = 1;
52+
export const Write = 1;
5353
/**
5454
* Statement with r-value usage of the selected variable.
5555
*/
56-
export const Rvalue = 2;
56+
export const Read = 2;
5757
/**
5858
* Location that constructs a variable of the selected type.
5959
*/

_specifications/lsp/3.18/metaModel/metaModel.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16103,13 +16103,13 @@
1610316103
},
1610416104
"values": [
1610516105
{
16106-
"name": "Lvalue",
16106+
"name": "Write",
1610716107
"value": 1,
1610816108
"documentation": "Statement with l-value usage of the selected variable.",
1610916109
"since": "3.18"
1611016110
},
1611116111
{
16112-
"name": "Rvalue",
16112+
"name": "Read",
1611316113
"value": 2,
1611416114
"documentation": "Statement with r-value usage of the selected variable.",
1611516115
"since": "3.18"

0 commit comments

Comments
 (0)