From 036fb9e2b8feafa99a33390bbf53a9482574f1a7 Mon Sep 17 00:00:00 2001 From: Max Bradbury Date: Tue, 18 May 2021 21:11:51 +0100 Subject: [PATCH] spelling --- src/image.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/image.rs b/src/image.rs index 2e6076c..571a8b3 100644 --- a/src/image.rs +++ b/src/image.rs @@ -5,7 +5,7 @@ use std::fs::read_to_string; #[derive(Debug, Eq, PartialEq, Serialize, Deserialize)] pub struct Image { pub name: String, - /// colour indexes - todo convert to [u8; 64]? + /// colour indices - todo convert to [u8; 64]? pub pixels: Vec, }