We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3180de7 commit a5fe579Copy full SHA for a5fe579
src/lib.rs
@@ -50,7 +50,7 @@ pub fn delay(count: u32) {
50
}
51
52
53
-///delay for N miliseconds
+///delay for N milliseconds
54
/// # Arguments
55
/// * 'ms' - an u32, number of milliseconds to busy-wait
56
#[inline(always)]
@@ -62,7 +62,7 @@ pub fn delay_ms(ms: u32) {
62
63
///delay for N microseconds
64
65
-/// * 'ms' - an u32, number of microseconds to busy-wait
+/// * 'us' - an u32, number of microseconds to busy-wait
66
67
pub fn delay_us(us: u32) {
68
// picoseconds
0 commit comments