Skip to content

Commit

Permalink
fixup: typo in variable name
Browse files Browse the repository at this point in the history
steamos, not streamos lol
  • Loading branch information
cole-h committed Dec 16, 2024
1 parent fc8b063 commit 069def4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/planner/steam_deck.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,10 @@ impl Planner for SteamDeck {
.map_err(PlannerError::Action)?;
actions.push(create_bind_mount_unit.boxed());
} else {
let revert_clean_streamos_nix_offload = RevertCleanSteamosNixOffload::plan()
let revert_clean_steamos_nix_offload = RevertCleanSteamosNixOffload::plan()
.await
.map_err(PlannerError::Action)?;
actions.push(revert_clean_streamos_nix_offload.boxed());
actions.push(revert_clean_steamos_nix_offload.boxed());

let ensure_steamos_nix_directory = EnsureSteamosNixDirectory::plan()
.await
Expand Down

0 comments on commit 069def4

Please sign in to comment.