enigma/rotor/
turn.rs

1impl super::Rotor {
2    pub fn turn(&mut self) {
3        self.position = (self.position + 1) % 26;
4    }
5}