From 9f7442e2255a45e010439c9fc8377eb3e148fefb Mon Sep 17 00:00:00 2001 From: razetime Date: Mon, 31 Oct 2022 09:04:37 +0530 Subject: [PATCH] fix bzip3 documentation issues --- extra/compression/bzip3/bzip3-docs.factor | 2 +- extra/compression/bzip3/ffi/ffi-docs.factor | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/compression/bzip3/bzip3-docs.factor b/extra/compression/bzip3/bzip3-docs.factor index 30cec8a7d8..0cc84b5656 100644 --- a/extra/compression/bzip3/bzip3-docs.factor +++ b/extra/compression/bzip3/bzip3-docs.factor @@ -4,7 +4,7 @@ USING: byte-arrays help.markup help.syntax kernel strings ; IN: compression.bzip3 HELP: compress -{ $values byte-array: byte-array block-size/f: POSTPONE: integer/f byte-array: byte-array } +{ $values byte-array: byte-array block-size/f: { $maybe "integer" } byte-array: byte-array } { $description Takes a { $link "byte-array" } and block size, and pushes a compressed byte array from bzip3. } ; HELP: decompress diff --git a/extra/compression/bzip3/ffi/ffi-docs.factor b/extra/compression/bzip3/ffi/ffi-docs.factor index 86a1ca728a..9a2c8ceeff 100644 --- a/extra/compression/bzip3/ffi/ffi-docs.factor +++ b/extra/compression/bzip3/ffi/ffi-docs.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2022 Your name. ! See http://factorcode.org/license.txt for BSD license. -USING: help.markup help.syntax kernel math ; +USING: classes.struct help.markup help.syntax kernel math ; IN: compression.bzip3.ffi HELP: bz3_bound -- 2.34.1