summaryrefslogtreecommitdiff
path: root/schist_core/schist_models/src/date_utc.rs
diff options
context:
space:
mode:
authorjoeac <me@joeac.net>2026-01-17 17:17:50 +0000
committerjoeac <me@joeac.net>2026-01-17 17:17:50 +0000
commitbf74f305894bde98033932235a4210c7d6865adf (patch)
tree051422c97fcb5d7c2eafd426ea66e1a906948747 /schist_core/schist_models/src/date_utc.rs
parentfe85652e4d3e8906824baddaafd05d19105579b8 (diff)
parentf69ec8416c4e6301dcfa06791b025785d7f61b6b (diff)
Merge pull request 'random-stuff' (#4) from random-stuff into main
Reviewed-on: https://git.joeac.net/joeac/schist/pulls/4
Diffstat (limited to 'schist_core/schist_models/src/date_utc.rs')
-rw-r--r--schist_core/schist_models/src/date_utc.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/schist_core/schist_models/src/date_utc.rs b/schist_core/schist_models/src/date_utc.rs
index 18a894b..927644c 100644
--- a/schist_core/schist_models/src/date_utc.rs
+++ b/schist_core/schist_models/src/date_utc.rs
@@ -105,7 +105,7 @@ impl DateUtc {
return true;
}
- fn first_day_in_next_month(&self) -> Self {
+ pub fn first_day_in_next_month(&self) -> Self {
let month = self.month();
let mut curr_guess: Option<DateTime<Utc>> = None;
let mut curr_add = 1;
@@ -120,7 +120,7 @@ impl DateUtc {
};
}
- fn first_day_in_month(&self) -> Self {
+ pub fn first_day_in_month(&self) -> Self {
let month = self.month();
let mut prev_guess = self.clone();
let mut curr_guess = self.clone();