Remove bad whitespace

This commit is contained in:
Bearmine
2025-05-28 17:02:33 -05:00
parent 2d6a15510e
commit 4b643ed750

View File

@@ -24,7 +24,6 @@ impl<'a> WordPuller<'a> {
pub fn take(&self, num_of_letters: usize) -> String {
let mut word = String::new();
for i in 0..num_of_letters {
let x= self.x as isize + (i as isize * self.direction.0);
let y= self.y as isize + (i as isize * self.direction.1);