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)