Skip to content

Commit

Permalink
discover_devices: fix a typo (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
manio authored Nov 30, 2022
1 parent 72fef91 commit 92dd80b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluer/examples/discover_devices.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async fn main() -> bluer::Result<()> {
env_logger::init();
let session = bluer::Session::new().await?;
let adapter = session.default_adapter().await?;
println!("Discovering devices using Bluetooth adapater {}\n", adapter.name());
println!("Discovering devices using Bluetooth adapter {}\n", adapter.name());
adapter.set_powered(true).await?;

let device_events = adapter.discover_devices().await?;
Expand Down

0 comments on commit 92dd80b

Please sign in to comment.