iCodeSometime / candidate

Use of FIXME/XXX/TODO RS-D1000
Documentation
Minor
a year agoa year old
This TODO commment indicates that action is to be taken
48    /// assert_eq!(Piece::Knight.to_string(Color::Black), "n");
49    /// ```
50    ///
51    // TODO: refactor - why is white uppercase and black lowercase??52    #[inline]
53    pub fn to_string(&self, color: Color) -> String {
54        let piece = format!("{}", self);