Skip to content

Commit

Permalink
Normalize implements AsRef
Browse files Browse the repository at this point in the history
  • Loading branch information
ontley committed Feb 9, 2024
1 parent 9909082 commit 334af9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-lsp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ fn start_client(
enable_snippets: bool,
) -> Result<Option<NewClient>> {
let (workspace, workspace_is_cwd) = helix_loader::find_workspace();
let workspace = path::normalize(&workspace);
let workspace = path::normalize(workspace);
let root = find_lsp_workspace(
doc_path
.and_then(|x| x.parent().and_then(|x| x.to_str()))
Expand Down

0 comments on commit 334af9c

Please sign in to comment.