Skip to content

Commit 7f58e76

Browse files
committed
wording tweaks
1 parent 7859c0b commit 7f58e76

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

_specifications/lsp/3.18/language/codeAction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,13 +416,13 @@ export type CodeActionTriggerKind = 1 | 2;
416416

417417
```typescript
418418
/**
419-
* Code action tags are extra annotations that tweak the rendering of a code action.
419+
* Code action tags are extra annotations that tweak the behavior of a code action.
420420
*
421421
* @since 3.18.0 - proposed
422422
*/
423423
export namespace CodeActionTag {
424424
/**
425-
* Render a code action as LLM-generated, usually using a sparkle icon.
425+
* Marks the code action as LLM-generated.
426426
*/
427427
export const LLMGenerated = 1;
428428
}

_specifications/lsp/3.18/metaModel/metaModel.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5721,8 +5721,7 @@
57215721
},
57225722
"optional": true,
57235723
"documentation": "Tags for this code action.\n\n@since 3.18.0 - proposed",
5724-
"since": "3.18.0 - proposed",
5725-
"proposed": true
5724+
"since": "3.18.0 - proposed"
57265725
}
57275726
],
57285727
"documentation": "A code action represents a change that can be performed in code, e.g. to fix a problem or\nto refactor code.\n\nA CodeAction must set either `edit` and/or a `command`. If both are supplied, the `edit` is applied first, then the `command` is executed."
@@ -14626,12 +14625,11 @@
1462614625
{
1462714626
"name": "LLMGenerated",
1462814627
"value": 1,
14629-
"documentation": "Render a code action as LLM-generated, usually using a sparkle icon."
14628+
"documentation": "Marks the code action as LLM-generated."
1463014629
}
1463114630
],
14632-
"documentation": "Code action tags are extra annotations that tweak the rendering of a code action.\n\n@since 3.18.0",
14633-
"since": "3.18.0",
14634-
"proposed": true
14631+
"documentation": "Code action tags are extra annotations that tweak the behavior of a code action.\n\n@since 3.18.0 - proposed",
14632+
"since": "3.18.0 - proposed"
1463514633
},
1463614634
{
1463714635
"name": "TraceValue",

0 commit comments

Comments
 (0)