diff options
| author | pml68 <contact@pml68.dev> | 2025-06-15 00:25:20 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-06-15 00:25:20 +0200 |
| commit | faa89b670385b09cef1b1e7b2f64f34a5689f06e (patch) | |
| tree | 2f8234d9fe7500da068132a035c017972c159bb8 /src/error.rs | |
| parent | feat: create config file on startup if it doesn't exist (diff) | |
| download | iced-builder-faa89b670385b09cef1b1e7b2f64f34a5689f06e.tar.gz | |
feat: write defaults to newly created config file if it's missing
Diffstat (limited to 'src/error.rs')
| -rw-r--r-- | src/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.rs b/src/error.rs index a65fb54..8c405b3 100644 --- a/src/error.rs +++ b/src/error.rs @@ -8,7 +8,7 @@ use thiserror::Error; #[error(transparent)] pub enum Error { IO(Arc<io::Error>), - #[error("Config file does not exist, so an empty one was created")] + #[error("Config file does not exist, so a default one was created")] ConfigMissing, #[error("JSON parsing error: {0}")] SerdeJSON(Arc<serde_json::Error>), |
