Skip to content

Commit f24cdf3

Browse files
committed
Workspace without sysroot could be possible
1 parent 7e19d99 commit f24cdf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/rust-analyzer/src/handlers/request.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,7 @@ pub(crate) fn handle_open_docs(
15461546
});
15471547

15481548
let (cargo, sysroot) = match ws_and_sysroot {
1549-
Some((ws, Some(sysroot))) => (Some(ws), Some(sysroot)),
1549+
Some((ws, sysroot)) => (Some(ws), sysroot),
15501550
_ => (None, None),
15511551
};
15521552

0 commit comments

Comments
 (0)