Skip to content

Commit

Permalink
Release 0.7.5
Browse files Browse the repository at this point in the history
[email protected]
[email protected]

Generated by cargo-workspaces
  • Loading branch information
elijah-potter committed Mar 3, 2024
1 parent 8639c9b commit 906fbfe
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion harper-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-core"
version = "0.7.4"
version = "0.7.5"
edition = "2021"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-ls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-ls"
version = "0.7.4"
version = "0.7.5"
edition = "2021"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions harper-ls/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use serde_json::Value;
#[derive(Debug, Clone)]
pub struct Config {
pub user_dict_path: PathBuf,
pub file_dict_path: PathBuf,
pub file_dict_path: PathBuf
}

impl Config {
Expand Down Expand Up @@ -42,7 +42,7 @@ impl Default for Config {
user_dict_path: config_dir().unwrap().join("harper-ls/dictionary.txt"),
file_dict_path: data_local_dir()
.unwrap()
.join("harper-ls/file_dictionaries/"),
.join("harper-ls/file_dictionaries/")
}
}
}

0 comments on commit 906fbfe

Please sign in to comment.