From bfbee04f8f9efa7d7080cf7151c93c952c9a06eb Mon Sep 17 00:00:00 2001 From: Jacob Trueb Date: Tue, 12 Nov 2024 14:15:13 -0600 Subject: [PATCH] Fix docs typo --- embassy-nrf/src/pdm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embassy-nrf/src/pdm.rs b/embassy-nrf/src/pdm.rs index e20be1070..be29f9346 100644 --- a/embassy-nrf/src/pdm.rs +++ b/embassy-nrf/src/pdm.rs @@ -367,7 +367,7 @@ impl<'d, T: Instance> Pdm<'d, T> { /// The bufers are accepted as a tuple of raw pointers, lengths and capacities matching /// the Vec::from_raw_parts() function. /// - /// SAFTEY: + /// SAFETY: /// It is expected that the caller will set the length to non-zero and re-use the same /// length and capacity for each buffer. Changing buffer sizes is not supported. ///