diff options
author | Nicholas Johnson <nick@nicholasjohnson.ch> | 2024-04-01 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nick@nicholasjohnson.ch> | 2024-04-01 00:00:00 +0000 |
commit | 07683df600e7f0b36be288d6f618aac0a731806bac61c93b437ca34228b2ca6a (patch) | |
tree | ad2707aea553625f9a64ece7b4c52af2fcad20ec156b5798f6dddfb2d00e0f53 | |
parent | 830754db546245315844e2873c92573280ff55417f4ff1db7c52eeb9d3260282 (diff) | |
download | hitomezashi-rs-07683df600e7f0b36be288d6f618aac0a731806bac61c93b437ca34228b2ca6a.tar.gz hitomezashi-rs-07683df600e7f0b36be288d6f618aac0a731806bac61c93b437ca34228b2ca6a.zip |
Replace spaces with tab
-rw-r--r-- | src/hitomezashi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hitomezashi.rs b/src/hitomezashi.rs index 50d3d32..da6e296 100644 --- a/src/hitomezashi.rs +++ b/src/hitomezashi.rs @@ -33,7 +33,7 @@ pub fn hitomezashi(width: usize, height: usize, skew: Option<f32>) { let mut rng = rand::thread_rng(); - let init_bit: bool = rng.gen::<bool>(); + let init_bit: bool = rng.gen::<bool>(); let mut row_bits: Vec<bool> = Vec::with_capacity(height - 1); let mut col_bits: Vec<bool> = Vec::with_capacity(width - 1); |