Fix spelling of a term, also update gitignore

This commit is contained in:
rosedaler 2023-01-04 10:24:35 -05:00
parent de033260e6
commit 6b3ae3ea5e
3 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View file

@ -1 +1,3 @@
/target
.DS_Store

View file

@ -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 |
|----------|------------------------------------------|-------------------------------------------------|

View file

@ -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! ---")),
};