Fix order of attributes

This commit is contained in:
Lukas Kalbertodt 2017-01-31 16:19:05 +01:00
parent 62166784c9
commit 7697341873

View File

@ -8,11 +8,11 @@ pub enum Cell {
Cross, Cross,
} }
#[derive(Clone, Copy, Eq, PartialEq)]
/// Represents the index of one cell on the board. /// Represents the index of one cell on the board.
/// ///
/// They can be parsed from the string representation which looks like `"b1"`. /// They can be parsed from the string representation which looks like `"b1"`.
/// The letter represents the column, the digit represents the row. /// The letter represents the column, the digit represents the row.
#[derive(Clone, Copy, Eq, PartialEq)]
pub struct CellId { pub struct CellId {
/// This index is row-major. /// This index is row-major.
/// ///