aboutsummaryrefslogtreecommitdiff
path: root/src/asm.rs
diff options
context:
space:
mode:
authorGravatar Daniel Egger <daniel@eggers-club.de> 2020-07-09 00:14:08 +0200
committerGravatar GitHub <noreply@github.com> 2020-07-09 00:14:08 +0200
commitcab9336edb48855b3797ed87ed856c558ad75c36 (patch)
tree814cae12a75d3e4ec9c7ca3d970eb96a0931fcd1 /src/asm.rs
parentac64691a65e0e62fef10348ecb8582c37f50a7cb (diff)
downloadcortex-m-cab9336edb48855b3797ed87ed856c558ad75c36.tar.gz
cortex-m-cab9336edb48855b3797ed87ed856c558ad75c36.tar.zst
cortex-m-cab9336edb48855b3797ed87ed856c558ad75c36.zip
Update src/asm.rs
Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
Diffstat (limited to 'src/asm.rs')
-rw-r--r--src/asm.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asm.rs b/src/asm.rs
index 372924b..09ef75d 100644
--- a/src/asm.rs
+++ b/src/asm.rs
@@ -30,7 +30,7 @@ pub fn bkpt() {
/// level, however it is dependent on the specific architecture and core configuration.
///
/// NOTE that the delay can take much longer if interrupts are serviced during its execution
-/// and the execution time may wary with other factors. This delay is mainly useful for simple
+/// and the execution time may vary with other factors. This delay is mainly useful for simple
/// timer-less initialisation of peripherals iff accurate timing is not essential. In any other
/// case please use more accurate methods to cause a delay.
#[inline]