:: commit 8f88fe2f71420fdcf6f8d83bf5efe24dbbb92c6e

Christian Clauss <cclauss@me.com> — 2023-01-09 20:27

parents: 6e6895557b

Fix typo (#83)

* Fix typo

* Fix typo
diff --git a/configure.ac b/configure.ac
index 5737355..af7c136 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@ AM_INIT_AUTOMAKE([foreign subdir-objects tar-ustar dist-bzip2 dist-xz dist-zip c
 AM_SILENT_RULES([yes])
 AC_CONFIG_MACRO_DIR([build-aux])
 
-AC_MSG_CHECKING([whether system or user specificed compiler flags are set])
+AC_MSG_CHECKING([whether system or user specified compiler flags are set])
 AM_CONDITIONAL([PASSED_CFLAGS], [test -n "$CFLAGS"])
 AM_COND_IF([PASSED_CFLAGS], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])])
 
diff --git a/include/libbz3.h b/include/libbz3.h
index c9b377b..54e6906 100644
--- a/include/libbz3.h
+++ b/include/libbz3.h
@@ -97,7 +97,7 @@ BZIP3_API int bz3_compress(uint32_t block_size, const uint8_t * in, uint8_t * ou
 
 /**
  * @brief Decompress a block of data. This function does not support parallelism
- * by itself, consider using the low level `bz3_decode_blocks()` function instad.
+ * by itself, consider using the low level `bz3_decode_blocks()` function instead.
  * Using the low level API might provide better performance.
  * Returns a bzip3 error code; BZ3_OK when the operation is successful.
  * Make sure to set out_size to the size of the output buffer before the operation.
tab: 248 wrap: offon