aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/prelude.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/today/prelude.rs')
-rw-r--r--src/commands/today/prelude.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/today/prelude.rs b/src/commands/today/prelude.rs
index d0570fd..d5f470d 100644
--- a/src/commands/today/prelude.rs
+++ b/src/commands/today/prelude.rs
@@ -17,7 +17,7 @@ pub use super::{
#[inline]
-pub fn month_day(date: chrono::NaiveDate) -> (u32, u32) {
+pub fn month_day(date: chrono::NaiveDateTime) -> (u32, u32) {
(date.month(), date.day())
}