From c99bbdb27ba622319dcc42b8d85be09840bd4fe5 Mon Sep 17 00:00:00 2001
From: Grant Miller <GrantM11235@gmail.com>
Date: Tue, 20 Sep 2022 17:51:25 -0500
Subject: [PATCH] Remove trailing space

---
 embedded-hal-async/src/spi.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/embedded-hal-async/src/spi.rs b/embedded-hal-async/src/spi.rs
index d521b11b9..da4f9cc7c 100644
--- a/embedded-hal-async/src/spi.rs
+++ b/embedded-hal-async/src/spi.rs
@@ -163,7 +163,7 @@ pub unsafe trait SpiDevice: ErrorType {
     /// **NOTE:**
     /// It is not recommended to use this method directly, because it requires `unsafe` code to dereference the raw pointer.
     /// Instead, the [`transaction!`] macro should be used, which handles this safely inside the macro.
-    /// 
+    ///
     /// - Locks the bus
     /// - Asserts the CS (Chip Select) pin.
     /// - Calls `f` with an exclusive reference to the bus, which can then be used to do transfers against the device.