From 7697341873b1177de7857a9087d93ee145c1ecb9 Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Tue, 31 Jan 2017 16:19:05 +0100 Subject: [PATCH] Fix order of attributes --- aufgaben/sheet11/sol2/src/game/cell.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aufgaben/sheet11/sol2/src/game/cell.rs b/aufgaben/sheet11/sol2/src/game/cell.rs index 0bdef62..1d8c89a 100755 --- a/aufgaben/sheet11/sol2/src/game/cell.rs +++ b/aufgaben/sheet11/sol2/src/game/cell.rs @@ -8,11 +8,11 @@ pub enum Cell { Cross, } -#[derive(Clone, Copy, Eq, PartialEq)] /// Represents the index of one cell on the board. /// /// They can be parsed from the string representation which looks like `"b1"`. /// The letter represents the column, the digit represents the row. +#[derive(Clone, Copy, Eq, PartialEq)] pub struct CellId { /// This index is row-major. ///