From 6b3ae3ea5ef059f131fc1b3c0c420a73e41361f9 Mon Sep 17 00:00:00 2001 From: rosedaler <121954045+maddymodd@users.noreply.github.com> Date: Wed, 4 Jan 2023 10:24:35 -0500 Subject: [PATCH] Fix spelling of a term, also update gitignore --- .gitignore | 2 ++ README.md | 2 +- src/main.rs | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ea8c4bf..4b1d491 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ /target + +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md index 74ec4e8..9c7e596 100644 --- a/README.md +++ b/README.md @@ -292,7 +292,7 @@ Long-term state is saved onto the disk in the "OS data folder", using the [TOML] Given a slightly corrupted `state.toml` file, Gupax will attempt to merge it with a new default one. This will most likely happen if the internal data structure of `state.toml` is changed in the future (e.g removing an outdated setting). The node/pool database cannot be merged. -If Gupax can't read/write to disk at all, or if there are any other big issues, it will show an un-recoverable error screen. +If Gupax can't read/write to disk at all, or if there are any other big issues, it will show an unrecoverable error screen. | OS | Data Folder | Example | |----------|------------------------------------------|-------------------------------------------------| diff --git a/src/main.rs b/src/main.rs index fb711a6..370763f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1255,7 +1255,7 @@ impl eframe::App for App { }, _ => { match self.error_state.ferris { - Panic => ui.add_sized([width, height], Label::new("--- Gupax has encountered an un-recoverable error! ---")), + Panic => ui.add_sized([width, height], Label::new("--- Gupax has encountered an unrecoverable error! ---")), Happy => ui.add_sized([width, height], Label::new("--- Success! ---")), _ => ui.add_sized([width, height], Label::new("--- Gupax has encountered an error! ---")), };