aboutsummaryrefslogtreecommitdiff
path: root/embassy-time/src
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-12-21 14:44:56 +0000
committerGitHub <[email protected]>2023-12-21 14:44:56 +0000
commit87c03037e320ce30c0cd34fe97e0365e1b11aa9a (patch)
tree494e66fb12708722ce31108897c21c0aea7b1563 /embassy-time/src
parent90aebb58282f3f36fb5ffc4fde8a140a4ef231ee (diff)
parent8b36a32ed5d834b23e970d5b723dd7df1f1c94a2 (diff)
Merge pull request #2342 from embassy-rs/no-more-nightly
ci: use beta, add secondary nightly ci.
Diffstat (limited to 'embassy-time/src')
-rw-r--r--embassy-time/src/timer.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/embassy-time/src/timer.rs b/embassy-time/src/timer.rs
index 574d715da..2705ba03f 100644
--- a/embassy-time/src/timer.rs
+++ b/embassy-time/src/timer.rs
@@ -47,9 +47,6 @@ impl Timer {
47 /// 47 ///
48 /// Example: 48 /// Example:
49 /// ``` no_run 49 /// ``` no_run
50 /// # #![feature(type_alias_impl_trait)]
51 /// #
52 /// # fn foo() {}
53 /// use embassy_time::{Duration, Timer}; 50 /// use embassy_time::{Duration, Timer};
54 /// 51 ///
55 /// #[embassy_executor::task] 52 /// #[embassy_executor::task]
@@ -132,8 +129,6 @@ impl Future for Timer {
132/// 129///
133/// For instance, consider the following code fragment. 130/// For instance, consider the following code fragment.
134/// ``` no_run 131/// ``` no_run
135/// # #![feature(type_alias_impl_trait)]
136/// #
137/// use embassy_time::{Duration, Timer}; 132/// use embassy_time::{Duration, Timer};
138/// # fn foo() {} 133/// # fn foo() {}
139/// 134///
@@ -152,8 +147,6 @@ impl Future for Timer {
152/// Example using ticker, which will consistently call `foo` once a second. 147/// Example using ticker, which will consistently call `foo` once a second.
153/// 148///
154/// ``` no_run 149/// ``` no_run
155/// # #![feature(type_alias_impl_trait)]
156/// #
157/// use embassy_time::{Duration, Ticker}; 150/// use embassy_time::{Duration, Ticker};
158/// # fn foo(){} 151/// # fn foo(){}
159/// 152///