Rename conf to raw_conf, conf will be the parsed configuration String

This commit is contained in:
mhart 2020-10-17 21:17:36 +02:00
parent bd89bfa744
commit a55a4935ac
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ fn open_file(filename: &str) -> io::Result<String> {
fn main() {
let mut robot_pool: Vec<Robot> = Vec::new();
let conf = open_file("two_robots.txt");
let raw_conf = open_file("two_robots.txt");
}
#[cfg(test)]