diff --git a/README.md b/README.md index 179c5be..208113c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@
[![CI Badge](https://git.nicolabelluti.me/nicolabelluti/r701/actions/workflows/check-format-and-test.yaml/badge.svg)](https://git.nicolabelluti.me/nicolabelluti/r701/actions/?workflow=check-format-and-test.yaml) - +
> A reverse-engineered library to communicate with the > [R701](https://ipsattendant.it/rilevatore-presenze-r701/) by [I.P.S. @@ -18,6 +18,8 @@ If you want to read about this reverse engineering attempt, check out . +## Library Usage + 1. Add the library to you project: ```shell diff --git a/src/record.rs b/src/record.rs index 92bf6f0..db4b50c 100644 --- a/src/record.rs +++ b/src/record.rs @@ -106,7 +106,7 @@ mod tests { assert_eq!( record_bytes.try_into(), - Err::("Slice must be at least of length 12 to be converted into Record") + Err::("Slice must be of length 12 to be converted into Record") ); }