aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/rtc/mod.rs
diff options
context:
space:
mode:
authorRob Wells <[email protected]>2025-10-27 15:23:54 +0000
committerRob Wells <[email protected]>2025-10-27 15:30:21 +0000
commit7ef9a6453a0a2a286741d47fcb99170d802f7d7d (patch)
tree3f757273e8749994df3e8c5f0f9b1e6d1ac99e2f /embassy-rp/src/rtc/mod.rs
parent4c9efcd785eed99c3581373b77b4d3a1f559530c (diff)
embassy-rp: doc comment spelling pass
All changes but one are to documentation comments, and one to an ordinary comment.
Diffstat (limited to 'embassy-rp/src/rtc/mod.rs')
-rw-r--r--embassy-rp/src/rtc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-rp/src/rtc/mod.rs b/embassy-rp/src/rtc/mod.rs
index 68fb3b765..054572903 100644
--- a/embassy-rp/src/rtc/mod.rs
+++ b/embassy-rp/src/rtc/mod.rs
@@ -47,7 +47,7 @@ impl<'d, T: Instance> Rtc<'d, T> {
47 Self { inner } 47 Self { inner }
48 } 48 }
49 49
50 /// Enable or disable the leap year check. The rp2040 chip will always add a Feb 29th on every year that is divisable by 4, but this may be incorrect (e.g. on century years). This function allows you to disable this check. 50 /// Enable or disable the leap year check. The rp2040 chip will always add a Feb 29th on every year that is divisible by 4, but this may be incorrect (e.g. on century years). This function allows you to disable this check.
51 /// 51 ///
52 /// Leap year checking is enabled by default. 52 /// Leap year checking is enabled by default.
53 pub fn set_leap_year_check(&mut self, leap_year_check_enabled: bool) { 53 pub fn set_leap_year_check(&mut self, leap_year_check_enabled: bool) {