diff options
author | eug-vs <eugene@eug-vs.xyz> | 2023-02-23 13:21:57 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2023-02-23 14:01:19 +0300 |
commit | 43dc24718c442ef45f6cecf5790df0ab84a72cfc (patch) | |
tree | 16f446b1d5a3e0fdf638e0bcab16cf34ec338bd8 /src/board/io.rs | |
parent | f60c573ba71207c18a28413e3940a4e21b07c73f (diff) | |
download | chessnost-43dc24718c442ef45f6cecf5790df0ab84a72cfc.tar.gz |
refactor: apply clippy suggestions
Diffstat (limited to 'src/board/io.rs')
-rw-r--r-- | src/board/io.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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; |