From a4c5b843a015d5e0ff4d9439c58e49ea6f302e22 Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Mon, 27 May 2024 11:13:10 +0000 Subject: [PATCH] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18f0cb3..c8b391f 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Using `MatterStack<...>` hard-codes the following: The core of `rs-matter-stack` is `no_std` and no-`alloc`. For production use-cases you need to provide implementations of the following platform-specific traits: -- `Persist` - non-volatile storage abstraction. Easiest is to implement `KvBlobStore`, and then use it with the provided `KvPersist` utility. For STD, `rs-matter-stack` provides `DirKvBlobStore`. +- `Persist` - non-volatile storage abstraction. Easiest is to implement `KvBlobStore` instead, and then use it with the provided `KvPersist` utility. For STD, `rs-matter-stack` provides `DirKvBlobStore`. - `Netif` - network interface abstraction (i.e. monitoring when the network interface is up or down, and what is its IP configuration). For IP IO, the stack uses the [`edge-nal`](https://github.com/ivmarkov/edge-net/tree/master/edge-nal) crate, and is thus compatible with [`STD`](https://github.com/ivmarkov/edge-net/tree/master/edge-nal-std) and [`Embassy`](https://github.com/ivmarkov/edge-net/tree/master/edge-nal-embassy). - `Modem` (for BLE &Wifi only) - abstraction of the device radio, that can operate either in Wifi, or in BLE mode.