aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2022-10-14 12:49:24 +0200
committerfixeria <vyanitskiy@sysmocom.de>2022-11-04 19:34:05 +0000
commitde4e8daf7debb508ed4af7d4e5e51a7438f7bb96 (patch)
tree3a7866208bc00b766347ac0d7150f24556d351ca /src
parente61d459cef11a599008e179b16d5b09cdd88bc95 (diff)
bits: fix typo
Diffstat (limited to 'src')
-rw-r--r--src/bits.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bits.c b/src/bits.c
index c1c3f90f..3da7d9b9 100644
--- a/src/bits.c
+++ b/src/bits.c
@@ -181,7 +181,7 @@ int osmo_pbit2ubit(ubit_t *out, const pbit_t *in, unsigned int num_bits)
* \param[in] in input buffer of unpacked bits
* \param[in] in_ofs offset into input buffer
* \param[in] num_bits number of bits
- * \param[in] lsb_mode Encode bits in LSB orde instead of MSB
+ * \param[in] lsb_mode Encode bits in LSB order instead of MSB
* \returns length in bytes (max written offset of output buffer + 1)
*/
int osmo_ubit2pbit_ext(pbit_t *out, unsigned int out_ofs,
@@ -206,7 +206,7 @@ int osmo_ubit2pbit_ext(pbit_t *out, unsigned int out_ofs,
* \param[in] in input buffer of packed bits
* \param[in] in_ofs offset into input buffer
* \param[in] num_bits number of bits
- * \param[in] lsb_mode Encode bits in LSB orde instead of MSB
+ * \param[in] lsb_mode Encode bits in LSB order instead of MSB
* \returns length in bytes (max written offset of output buffer + 1)
*/
int osmo_pbit2ubit_ext(ubit_t *out, unsigned int out_ofs,