From 83ba941fda43b62c2c9cc3956e1c2e3027136103 Mon Sep 17 00:00:00 2001 From: Jesse Pullinen Date: Tue, 30 Aug 2022 00:39:18 +0300 Subject: [PATCH] Fix some typos in tools --- bluer-tools/src/blumon.rs | 2 +- bluer-tools/src/gattcat.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bluer-tools/src/blumon.rs b/bluer-tools/src/blumon.rs index c43cfcb..84c7154 100644 --- a/bluer-tools/src/blumon.rs +++ b/bluer-tools/src/blumon.rs @@ -182,7 +182,7 @@ async fn main() -> Result<()> { stdout(), terminal::Clear(ClearType::All), cursor::MoveTo(0, 0), - style::Print(format!("Discovering devices using Bluetooth adapater {}", adapter.name().blue())) + style::Print(format!("Discovering devices using Bluetooth adapter {}", adapter.name().blue())) ) .unwrap(); diff --git a/bluer-tools/src/gattcat.rs b/bluer-tools/src/gattcat.rs index 148c714..024a388 100644 --- a/bluer-tools/src/gattcat.rs +++ b/bluer-tools/src/gattcat.rs @@ -357,7 +357,7 @@ impl AdaptersOpts { let adapter_names = session.adapter_names().await?; for adapter_name in adapter_names { let adapter = session.adapter(&adapter_name)?; - println!("Bluetooth adapater {}", &adapter_name); + println!("Bluetooth adapter {}", &adapter_name); print_if_some_20( 2, @@ -369,7 +369,7 @@ impl AdaptersOpts { print_if_some_20(2, "Friendly name", Some(adapter.alias().await?), ""); print_if_some_20(2, "Powered", Some(adapter.is_powered().await?), ""); - print_if_some_20(2, "Discoverabe", Some(adapter.is_discoverable().await?), ""); + print_if_some_20(2, "Discoverable", Some(adapter.is_discoverable().await?), ""); print_if_some_20(2, "Pairable", Some(adapter.is_pairable().await?), ""); println!(" Advertising"); @@ -447,7 +447,7 @@ fn char_flags_to_vec(f: &CharacteristicFlags) -> Vec<&'static str> { v.push("write") }; if f.write_without_response { - v.push("write without respone"); + v.push("write without response"); } if f.reliable_write { v.push("reliable write");