From d6a1118406deb1cb4cf6317dfbbacf12ff9c7d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20van=20Dorst?= Date: Thu, 7 Sep 2023 21:02:33 +0200 Subject: [PATCH] fix some spelling --- embassy-net-adin1110/src/lib.rs | 4 ++-- embassy-net-adin1110/src/mdio.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/embassy-net-adin1110/src/lib.rs b/embassy-net-adin1110/src/lib.rs index e0af7bde..78bf9fb8 100644 --- a/embassy-net-adin1110/src/lib.rs +++ b/embassy-net-adin1110/src/lib.rs @@ -427,9 +427,9 @@ impl mdio::MdioBus for ADIN1110 { } } -/// Background runner for the ADIN110. +/// Background runner for the ADIN1110. /// -/// You must call `.run()` in a background task for the ADIN1100 to operate. +/// You must call `.run()` in a background task for the ADIN1110 to operate. pub struct Runner<'d, SPI, INT, RST> { mac: ADIN1110, ch: ch::Runner<'d, MTU>, diff --git a/embassy-net-adin1110/src/mdio.rs b/embassy-net-adin1110/src/mdio.rs index 68477006..60abbe16 100644 --- a/embassy-net-adin1110/src/mdio.rs +++ b/embassy-net-adin1110/src/mdio.rs @@ -36,7 +36,7 @@ enum Reg13Op { /// Driver needs to implement the Clause 22 /// Optional Clause 45 is the device supports this. /// -/// Claus 45 methodes are bases on +/// Clause 45 methodes are bases on pub trait MdioBus { type Error;