소스 검색

Add extra docs to `McycleDelay::new`

Joey Harrison 2 년 전
부모
커밋
28715684db
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/delay.rs

+ 2 - 1
src/delay.rs

@@ -8,7 +8,8 @@ pub struct McycleDelay {
 }
 
 impl McycleDelay {
-    /// Constructs the delay provider
+    /// Constructs the delay provider.
+    /// `ticks_second` should be the clock speed of the core, in Hertz
     #[inline(always)]
     pub fn new(ticks_second: u32) -> Self {
         Self { ticks_second }