summaryrefslogtreecommitdiffstats
path: root/CLI/rust/src/game_of_life/simulation/plane.rs
diff options
context:
space:
mode:
Diffstat (limited to 'CLI/rust/src/game_of_life/simulation/plane.rs')
-rw-r--r--CLI/rust/src/game_of_life/simulation/plane.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CLI/rust/src/game_of_life/simulation/plane.rs b/CLI/rust/src/game_of_life/simulation/plane.rs
index 10acd43..fad9398 100644
--- a/CLI/rust/src/game_of_life/simulation/plane.rs
+++ b/CLI/rust/src/game_of_life/simulation/plane.rs
@@ -1,5 +1,5 @@
-use std::ops::{Index, IndexMut};
use super::circular_index;
+use std::ops::{Index, IndexMut};
/// Game of Life universe building blocks (a plane is a circular Vec)
///