From 746ded94b13d037c5be16071d2d9d195b979c0c7 Mon Sep 17 00:00:00 2001
From: Sebastian Goll <sebastian.goll@gmx.de>
Date: Wed, 20 Mar 2024 19:52:36 +0100
Subject: [PATCH] Fix minor typos

---
 embassy-stm32/src/i2c/v1.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/embassy-stm32/src/i2c/v1.rs b/embassy-stm32/src/i2c/v1.rs
index 9f29ed5e0..563bbfdaf 100644
--- a/embassy-stm32/src/i2c/v1.rs
+++ b/embassy-stm32/src/i2c/v1.rs
@@ -58,10 +58,10 @@ pub unsafe fn on_interrupt<T: Instance>() {
 /// - `ST` = start condition
 /// - `SR` = repeated start condition
 /// - `SP` = stop condition
+/// - `ACK`/`NACK` = last byte in read operation
 #[derive(Copy, Clone)]
 enum FrameOptions {
-    /// `[ST/SR]+[NACK]+[SP]` First frame (of this type) in operation and last frame overall in this
-    /// transaction.
+    /// `[ST/SR]+[NACK]+[SP]` First frame (of this type) in transaction and also last frame overall.
     FirstAndLastFrame,
     /// `[ST/SR]+[NACK]` First frame of this type in transaction, last frame in a read operation but
     /// not the last frame overall.