Skip to content

Commit 4d74887

Browse files
Fixed incorrect result type for InlineValueRequest
1 parent 038577b commit 4d74887

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
@@ -860,7 +860,7 @@ pub enum InlineValueRequest {}
860860

861861
impl Request for InlineValueRequest {
862862
type Params = InlineValueParams;
863-
type Result = Option<InlineValue>;
863+
type Result = Option<Vec<InlineValue>>;
864864
const METHOD: &'static str = "textDocument/inlineValue";
865865
}
866866

0 commit comments

Comments
 (0)