From 696eb2f03801c2569f3b44fde2d166730b910e34 Mon Sep 17 00:00:00 2001 From: Justin Beaurivage Date: Mon, 25 Nov 2024 09:49:37 -0500 Subject: [PATCH] rustfmt (again) --- hal/src/peripherals/eic.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/hal/src/peripherals/eic.rs b/hal/src/peripherals/eic.rs index dd8244122b0c..4e5ad136d455 100644 --- a/hal/src/peripherals/eic.rs +++ b/hal/src/peripherals/eic.rs @@ -50,15 +50,15 @@ //! * Bind the corresponding `EIC` interrupt source to the SPI //! [`InterruptHandler`] (refer to the module-level //! [`async_hal`](crate::async_hal) documentation for more information). -//! * -//! * SAMD11/SAMD21: Turn an [`Eic`] into an async-enabled [`Eic`] by -//! calling [`Eic::into_future`]. Since there is only a single interrupt -//! handler for the EIC peripheral, all EXTINT channels must be turned -//! into async channels at once. -//! * SAMx5x: Turn an individuel [`ExtInt`] into an async-enabled [`ExtInt`] -//! by calling [`ExtInt::into_future`]. Each channel has a dedicated -//! interrupt source, therefore you must individually choose which -//! channels to turn into async channels. +//! +//! * SAMD11/SAMD21: Turn an [`Eic`] into an async-enabled [`Eic`] by calling +//! [`Eic::into_future`]. Since there is only a single interrupt handler for +//! the EIC peripheral, all EXTINT channels must be turned into async channels +//! at once. +//! * SAMx5x: Turn an individuel [`ExtInt`] into an async-enabled [`ExtInt`] by +//! calling [`ExtInt::into_future`]. Each channel has a dedicated interrupt +//! source, therefore you must individually choose which channels to turn into +//! async channels. //! * Use the provided [`wait`](ExtInt::wait) method. async-enabled [`ExtInt`]s //! also implement [`embedded_hal_async::digital::Wait`].