From d2b9b7acba21e220c769eb39b319dcd1c81f167d Mon Sep 17 00:00:00 2001 From: se2crid <151872490+se2crid@users.noreply.github.com> Date: Wed, 24 Sep 2025 20:39:48 +0200 Subject: [PATCH] Update README.md (#32) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 05e3fea..2311f81 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ async fn main() { // We'll ask usbmuxd for a device let mut usbmuxd = UsbmuxdConnection::default() .await - .expect("Unable to connect to usbmxud") + .expect("Unable to connect to usbmuxd"); let devs = usbmuxd.get_devices().unwrap(); if devs.is_empty() { eprintln!("No devices connected!"); @@ -119,12 +119,12 @@ async fn main() { } ``` -More examples are in the ``tools`` crate and in the crate documentation. +More examples are in the [`tools`](tools/) crate and in the crate documentation. ## FFI For use in other languages, a small FFI crate has been created to start exposing -idevice. Example C programs can be found in this repository. +idevice. Example C programs can be found in the [`ffi/examples`](ffi/examples/) directory. ## Version Policy