From a0face74d7ab155b3ced17b12cd4612ef5da860a Mon Sep 17 00:00:00 2001 From: Univa <41708691+Univa@users.noreply.github.com> Date: Wed, 6 Mar 2024 14:01:35 -0500 Subject: [PATCH] fix broken doc link --- docs/src/content/docs/features/feature-split.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/content/docs/features/feature-split.md b/docs/src/content/docs/features/feature-split.md index c27f6f5..285f277 100644 --- a/docs/src/content/docs/features/feature-split.md +++ b/docs/src/content/docs/features/feature-split.md @@ -193,10 +193,10 @@ struct MyKeyboardDongle; # Available Drivers -| Name | Feature Flag | `keyboard` Macro Driver String | Required Traits | -| ---------------- | -------------------------- | ------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Serial[^1] | N/A (available by default) | `"serial"` | `SerialDriverSettings`[^2] | -| nRF Bluetooth LE | `nrf-ble` | `"ble"` | [`BluetoothDevice`](rumcake/hw/mcu/trait.BluetoothDevice.html), `NRFBLECentralDriverSettings`[^2] (central device only), `NRFBLEPeripheralDriverSettings`[^2] (peripheral device only) | +| Name | Feature Flag | `keyboard` Macro Driver String | Required Traits | +| ---------------- | -------------------------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Serial[^1] | N/A (available by default) | `"serial"` | `SerialDriverSettings`[^2] | +| nRF Bluetooth LE | `nrf-ble` | `"ble"` | [`BluetoothDevice`](/rumcake/api/nrf52840/rumcake/hw/mcu/trait.BluetoothDevice.html), `NRFBLECentralDriverSettings`[^2] (central device only), `NRFBLEPeripheralDriverSettings`[^2] (peripheral device only) | [^1]: Compatible with any type that implements both `embedded_io_async::Read` and `embedded_io_async::Write`.