Skip to content

Commit a82d90c

Browse files
authored
Fix typos (#472)
1 parent 56c034c commit a82d90c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ Add the following to the top of your config file at `~/.config/ferium/config.jso
359359

360360
- Update to Libium 1.12
361361
- Improved upgrade code to be faster and more clean
362-
- Immediately fail if rate limit error occured
362+
- Immediately fail if rate limit error occurred
363363
- Somewhat fixes [#51](https://github.com/theRookieCoder/ferium/issues/51)
364364
- Show the file size when downloading files
365365

@@ -530,12 +530,12 @@ Removed error handling
530530
## [3.16.0] - 28.03.2022
531531

532532
- Moved `add.rs` to libium
533-
- Small edits to accomodate changes in libium 1.4
533+
- Small edits to accommodate changes in libium 1.4
534534
- Massively simplified error handling, planning to replace with `anyhow` soon as it useless
535535

536536
## [3.15.3] - 26.03.2022
537537

538-
Small tweaks to accomodate the changes in `ferinth` and `libium`
538+
Small tweaks to accommodate the changes in `ferinth` and `libium`
539539

540540
## [3.15.2] - 26.03.2022
541541

@@ -545,7 +545,7 @@ Small tweaks to accomodate the changes in `ferinth` and `libium`
545545
## [3.15.1] - 25.03.2022
546546

547547
- Added hidden `config-file` argument
548-
- Massively improved integration tests. They are now independant from each other and can run in parallel
548+
- Massively improved integration tests. They are now independent from each other and can run in parallel
549549

550550
## [3.15.0] - 24.03.2022
551551

@@ -573,7 +573,7 @@ Switched from make to [just](https://github.com/casey/just)
573573

574574
## [3.13.0] - 02.03.2022
575575

576-
- Moved all the subcommand functions in `main.rs` to seperate files
576+
- Moved all the subcommand functions in `main.rs` to separate files
577577
- Updated the settings in `cli.rs`
578578
Functionality should not have been changed
579579

@@ -652,7 +652,7 @@ HUGE UPDATE
652652
### Main
653653
- Getting the config file no longer exits the program early when creating a new config file
654654
- A more helpful error message for when decoding the config file fails
655-
- The `profile create` subcommand now runs seperately before the current profile is read
655+
- The `profile create` subcommand now runs separately before the current profile is read
656656
- Multiple new command have been created such as `list_profiles()`, and `delete()`
657657
- Many commands have been revamped to allow the arguments to be passed through the CLI rather than through a UI
658658
- The `profile configure` command's UI now has an option to change the profile's name
@@ -746,7 +746,7 @@ Merry Christmas and a Happy New Year!
746746

747747
- Added a check for mod loader compatibility in `upgrade_modrinth()` and `upgrade_github()`
748748
- Improved the GitHub Releases version and mod loader checking algorithm
749-
- `download_release()` and `download_version()` are now `download_asset()` and `download_version_file()` repectively
749+
- `download_release()` and `download_version()` are now `download_asset()` and `download_version_file()` respectively
750750
- If multiple compatible assets were found, a selector is shown to let the user pick the latest version
751751
- The progress indicators updates now show the name of the asset being downloaded rather than the name of the `Version` or `Release`
752752
- Added function `remove_minor_version()` which is extracted from `get_latest_mc_versions()`

libium/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Added filters
6161

6262
- Simplify error handling since custom catching of "not found" errors is no longer needed
6363
- Added a function to parse a string into either a curseforge, github, or modrinth identifier
64-
- Required information about projects is now sent batched to the relevent APIs
64+
- Required information about projects is now sent batched to the relevant APIs
6565
- GitHub batched queries use GraphQL
6666
- `github()`, `curseforge()`, and `modrinth()` do not perform any network requests, they solely use the data provided in their arguments
6767
- All of these functions now perform compatibility checks by themselves, again without any additional network requests
@@ -347,7 +347,7 @@ Change macOS default mods directory from using the `ApplicationSupport` shortcut
347347

348348
- Replace the `for` loop in `check_mod_loader()` with an iterator call
349349
- The upgrade functions no longer deal with Quilt -> Fabric backwards compatibility
350-
- Upgrade functions (again) return only the compatibile asset they found
350+
- Upgrade functions (again) return only the compatible asset they found
351351
- Upgrade functions no longer take a `profile`, they check for compatibility with the `game_version_to_check` and `mod_loader_to_check` provided
352352

353353
## `1.10.0`

libium/src/config/structs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub struct Profile {
6161
}
6262

6363
impl Profile {
64-
/// A simple contructor that automatically deals with converting to filters
64+
/// A simple constructor that automatically deals with converting to filters
6565
pub fn new(
6666
name: String,
6767
output_dir: PathBuf,

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ fn main() -> ExitCode {
107107
{
108108
eprintln!(
109109
"{}",
110-
"Verify that you are connnected to the internet"
110+
"Verify that you are connected to the internet"
111111
.yellow()
112112
.bold()
113113
);

0 commit comments

Comments
 (0)