From a55a4935ac968c9ac4e334e3c935620abe56de5c Mon Sep 17 00:00:00 2001 From: mhart Date: Sat, 17 Oct 2020 21:17:36 +0200 Subject: [PATCH] Rename conf to raw_conf, conf will be the parsed configuration String --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 9600ecd..a362e2e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -59,7 +59,7 @@ fn open_file(filename: &str) -> io::Result { fn main() { let mut robot_pool: Vec = Vec::new(); - let conf = open_file("two_robots.txt"); + let raw_conf = open_file("two_robots.txt"); } #[cfg(test)]