From f93b1fbce0be3b6d669d6a6b37c59164fc43bd57 Mon Sep 17 00:00:00 2001 From: Rak Laptudirm Date: Sun, 26 May 2024 20:24:13 +0530 Subject: [PATCH] chore: actually place the template in the correct place --- ataxx/src/position.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ataxx/src/position.rs b/ataxx/src/position.rs index 5ef4be0..de08719 100644 --- a/ataxx/src/position.rs +++ b/ataxx/src/position.rs @@ -228,7 +228,7 @@ impl Position { /// /// let mov = Move::new_single(Square::B7); /// - /// assert_eq!(pos.after_move(mov)::.checksum, new_pos.checksum); + /// assert_eq!(pos.after_move::(mov).checksum, new_pos.checksum); /// ``` pub fn after_move(&self, m: Move) -> Position { let stm = self.side_to_move;