Skip to content
Snippets Groups Projects
Commit 6e030925 authored by Louis's avatar Louis :fire:
Browse files

Fix example output line

parent f146afce
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,6 @@ use std::time::Duration; ...@@ -15,6 +15,6 @@ use std::time::Duration;
fn my_cross_platform_timer(last_time: Spot) { fn my_cross_platform_timer(last_time: Spot) {
let time_diff: Duration = Spot::now() - last_time; let time_diff: Duration = Spot::now() - last_time;
println!("It has been {} seconds", time_diff.as_seconds()); println!("It has been {} seconds", time_diff.as_secs());
} }
``` ```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment