From 10f14747c35f5deab8240c4d792439d72f807bf9 Mon Sep 17 00:00:00 2001 From: Joshua Salzedo Date: Sun, 21 Mar 2021 17:05:22 -0700 Subject: [PATCH] Fix module-level docstring --- embassy/src/time/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/embassy/src/time/mod.rs b/embassy/src/time/mod.rs index b19ab6dbb..4e9b5f592 100644 --- a/embassy/src/time/mod.rs +++ b/embassy/src/time/mod.rs @@ -1,6 +1,6 @@ -/// Time abstractions -/// To use these abstractions, first call `set_clock` with an instance of an monotonic `Clock`. -/// +//! Time abstractions +//! To use these abstractions, first call `set_clock` with an instance of an [Clock](trait.Clock.html). +//! mod duration; mod instant; mod traits;