Skip to content

Commit

Permalink
Merge pull request #272 from tooltitude-support/inline-value-fix
Browse files Browse the repository at this point in the history
Fixed incorrect result type for InlineValueRequest
  • Loading branch information
Marwes committed Jun 4, 2024
2 parents 18ed1b8 + 4d74887 commit 310915c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ pub enum InlineValueRequest {}

impl Request for InlineValueRequest {
type Params = InlineValueParams;
type Result = Option<InlineValue>;
type Result = Option<Vec<InlineValue>>;
const METHOD: &'static str = "textDocument/inlineValue";
}

Expand Down

0 comments on commit 310915c

Please sign in to comment.