We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc7e636 commit 13d9b2fCopy full SHA for 13d9b2f
src/asm.rs
@@ -31,8 +31,8 @@ pub fn bkpt() {
31
///
32
/// NOTE that the delay can take much longer if interrupts are serviced during its execution
33
/// and the execution time may vary with other factors. This delay is mainly useful for simple
34
-/// timer-less initialization of peripherals iff accurate timing is not essential. In any other
35
-/// case please use more accurate methods to cause a delay.
+/// timer-less initialization of peripherals if and only if accurate timing is not essential. In
+/// any other case please use a more accurate method to produce a delay.
36
#[inline]
37
pub fn delay(_n: u32) {
38
// NOTE(divide by 4) is easier to compute than `/ 3` because it's just a shift (`>> 2`).
0 commit comments