From 55ee252434834cc9548acdc7b5da8ccd09043ca1 Mon Sep 17 00:00:00 2001 From: Michael Kefeder Date: Mon, 29 Sep 2025 21:30:24 +0200 Subject: fixup: documentation more precise --- embassy-nrf/src/saadc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embassy-nrf/src/saadc.rs b/embassy-nrf/src/saadc.rs index d84246572..fd48faabb 100644 --- a/embassy-nrf/src/saadc.rs +++ b/embassy-nrf/src/saadc.rs @@ -462,7 +462,7 @@ impl<'d, const N: usize> Drop for Saadc<'d, N> { // This is needed when more than one pin is sampled to avoid needless power consumption. // More information can be found in [nrf52 Anomaly 241](https://docs.nordicsemi.com/bundle/errata_nRF52810_Rev1/page/ERR/nRF52810/Rev1/latest/anomaly_810_241.html). // The workaround seems like it copies the configuration before reset and reapplies it after. - // This method consumes the instance forcing a reconfiguration at compile time, hence we only + // The instance is dropped, forcing a reconfiguration at compile time, hence we only // call what is the reset portion of the workaround. #[cfg(feature = "_nrf52")] { -- cgit