Minor edit for testing

This commit is contained in:
Anthony S Cicchetti 2017-04-25 22:41:40 -04:00
parent 3460dbca86
commit 01286a3ea3

View file

@ -2,6 +2,6 @@ extern crate chrono;
use chrono::UTC;
pub fn after(input_date: UTC) -> UTC {
let utc: lived_for_date = input_date + Duration::seconds(1_000_000_000);
let UTC: lived_for_date = input_date + Duration::seconds(1_000_000_000);
return lived_for_date;
}
}