diff options
| author | mo8it <mo8it@proton.me> | 2024-12-28 16:46:24 +0100 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-12-28 16:46:24 +0100 |
| commit | bde6f7470c651c1d608eda6a18940b092a982184 (patch) | |
| tree | 54dcd96a06068e0f19abf9ff348bd22cb8e41439 /exercises/12_options | |
| parent | 53ec59ed95bfddf17ade467c6bceb702b7d04d51 (diff) | |
Co-ordinates -> Coordinates
Diffstat (limited to 'exercises/12_options')
| -rw-r--r-- | exercises/12_options/options3.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/12_options/options3.rs b/exercises/12_options/options3.rs index 4cedb51..c97b1d3 100644 --- a/exercises/12_options/options3.rs +++ b/exercises/12_options/options3.rs @@ -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!"), } |
