Skip to content

Commit 310915c

Browse files
authored
Merge pull request #272 from tooltitude-support/inline-value-fix
Fixed incorrect result type for InlineValueRequest
2 parents 18ed1b8 + 4d74887 commit 310915c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/request.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ pub enum InlineValueRequest {}
871871

872872
impl Request for InlineValueRequest {
873873
type Params = InlineValueParams;
874-
type Result = Option<InlineValue>;
874+
type Result = Option<Vec<InlineValue>>;
875875
const METHOD: &'static str = "textDocument/inlineValue";
876876
}
877877

0 commit comments

Comments
 (0)