From e7845ae6f03f3a00cc0cdef6dea64a1a310ae2d1 Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Wed, 14 Feb 2024 14:24:48 +0000 Subject: [PATCH] docs: typos --- CHANGELOG.md | 2 +- src/app_data/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffe9c78..48db311 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ ### Refactors + use &[T] instead of &Vec, [76cd08ab2f98687a866a6bbb4fa93bbdedaa7699], [1f62bb50210f2d66bb7215e42e8b21a3c1a6ec06] -+ draw_block constaints into consts, [0436ff1b7356c80532048c7d497c66d331092b01] ++ draw_block constraints into consts, [0436ff1b7356c80532048c7d497c66d331092b01] ### Tests + update port test with new colour, [f74ae3f5c34d74b78822078291fed401427c4cba] diff --git a/src/app_data/mod.rs b/src/app_data/mod.rs index 08126c3..d0acb9b 100644 --- a/src/app_data/mod.rs +++ b/src/app_data/mod.rs @@ -383,7 +383,7 @@ impl AppData { } /// Get mutable Option of the currently selected container DockerControls items - /// TODO command or control, need a uniform name acorss the application + /// TODO command or control, need a uniform name across the application pub fn get_control_items(&mut self) -> Option<&mut Vec> { self.get_mut_selected_container() .map(|i| &mut i.docker_controls.items)