Co-ordinates -> Coordinates

This commit is contained in:
mo8it
2024-12-28 16:46:24 +01:00
parent 53ec59ed95
commit bde6f7470c
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ fn main() {
// TODO: Fix the compiler error by adding something to this match statement.
match optional_point {
Some(p) => println!("Co-ordinates are {},{}", p.x, p.y),
Some(p) => println!("Coordinates are {},{}", p.x, p.y),
_ => panic!("No match!"),
}