Skip to content

Commit e18da2e

Browse files
committed
general,language: fix typo on ReferenceParams
Signed-off-by: Koichi Shiraishi <[email protected]>
1 parent 9e4886e commit e18da2e

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

general.go

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -233,18 +233,6 @@ type FileDelete struct {
233233
URI string `json:"uri"`
234234
}
235235

236-
// ReferencesParams params of References Request.
237-
//
238-
// @since 3.15.0.
239-
type ReferencesParams struct {
240-
TextDocumentPositionParams
241-
WorkDoneProgressParams
242-
PartialResultParams
243-
244-
// Context is the ReferenceParams context.
245-
Context ReferenceContext `json:"context"`
246-
}
247-
248236
// DocumentHighlightOptions registration option of DocumentHighlight server capability.
249237
//
250238
// @since 3.15.0.

language.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,10 +596,15 @@ type SignatureHelpRegistrationOptions struct {
596596
TriggerCharacters []string `json:"triggerCharacters,omitempty"`
597597
}
598598

599-
// ReferenceParams params of Find References Request.
599+
// ReferenceParams params of References Request.
600+
//
601+
// @since 3.15.0.
600602
type ReferenceParams struct {
601603
TextDocumentPositionParams
604+
WorkDoneProgressParams
605+
PartialResultParams
602606

607+
// Context is the ReferenceParams context.
603608
Context ReferenceContext `json:"context"`
604609
}
605610

0 commit comments

Comments
 (0)