From 924dc895e0b43703313e55e85713b1399939a3bc Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sat, 3 May 2025 08:50:55 +0300 Subject: [PATCH] Updated documentation --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4bb804f..a574e87 100644 --- a/README.md +++ b/README.md @@ -394,15 +394,15 @@ If the _fill_ argument is present, it's value must confine to C uint8_t values (**c-bytevector-s8-set!** _c-bytevector_ _k_ _byte_) -If K is not a valid index of c-bytevector the behaviour is undefined. +If _k_ is not a valid index of c-bytevector the behaviour is undefined. -Stores the byte in element k of c-bytevector. +Stores the _byte_ in element _k_ of _c-bytevector_. -(**c-bytevector-s8-ref** _c-bytevector_ _k_ _byte_) +(**c-bytevector-s8-ref** _c-bytevector_ _k_) -If K is not a valid index of c-bytevector the behaviour is undefined. +If _k_ is not a valid index of c-bytevector the behaviour is undefined. -Returns the byte at index k of c-bytevector. +Returns the byte at index _k_ of _c-bytevector_. (**c-bytevector-uint-ref** _c-bytevector_ _k_ _endianness_ _size_)
(**c-bytevector-sint-ref** _c-bytevector_ _k_ _endianness_ _size_)