From 43dc24718c442ef45f6cecf5790df0ab84a72cfc Mon Sep 17 00:00:00 2001 From: eug-vs Date: Thu, 23 Feb 2023 13:21:57 +0300 Subject: refactor: apply clippy suggestions --- src/board/io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/board/io.rs') diff --git a/src/board/io.rs b/src/board/io.rs index ca75c8c..67aa096 100644 --- a/src/board/io.rs +++ b/src/board/io.rs @@ -8,7 +8,7 @@ const PIECE_CHARS: [&str; 12] = [ /// Input/Output operations with Board pub trait IO { - fn print(&self) -> (); + fn print(&self); #[allow(non_snake_case)] fn from_FEN(fen: String) -> Self; -- cgit v1.2.3