1
0
Fork 0
This commit is contained in:
Vivianne 2022-12-02 02:42:19 -08:00
parent 5f08074bf5
commit a5cc701cce
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ fn part1(lines: std::io::Lines<&mut io::BufReader<fs::File>>) {
.next()
.expect("Want two items per line")
.parse::<Rps>()
.expect("Can't get my strategy");
.expect("Can't get my move");
let score = mine.score(theirs);
total_score += score;