Skip to content

Commit

Permalink
Workspace without sysroot could be possible
Browse files Browse the repository at this point in the history
  • Loading branch information
Ddystopia committed May 2, 2023
1 parent 7e19d99 commit f24cdf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rust-analyzer/src/handlers/request.rs
Expand Up @@ -1546,7 +1546,7 @@ pub(crate) fn handle_open_docs(
});

let (cargo, sysroot) = match ws_and_sysroot {
Some((ws, Some(sysroot))) => (Some(ws), Some(sysroot)),
Some((ws, sysroot)) => (Some(ws), sysroot),
_ => (None, None),
};

Expand Down

0 comments on commit f24cdf3

Please sign in to comment.