Skip to content

Commit 037798c

Browse files
committed
Workspace without sysroot could be possible
1 parent 2a8dee1 commit 037798c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/rust-analyzer/src/handlers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1574,7 +1574,7 @@ pub(crate) fn handle_open_docs(
15741574
});
15751575

15761576
let (cargo, sysroot) = match ws_and_sysroot {
1577-
Some((ws, Some(sysroot))) => (Some(ws), Some(sysroot)),
1577+
Some((ws, sysroot)) => (Some(ws), sysroot),
15781578
_ => (None, None),
15791579
};
15801580

0 commit comments

Comments
 (0)