File 0140-stdlib-Fix-mistake-in-zstd-docs.patch of Package erlang
From 76f01bd5fbfa19d1ed2a9cfb5a997ba04b6a2c0e Mon Sep 17 00:00:00 2001 From: Tom <TD5@users.noreply.github.com> Date: Wed, 19 Nov 2025 10:11:48 +0000 Subject: [PATCH] stdlib: Fix mistake in zstd docs Fix a mistake that briefly confused me, since I thought the same parameters were used for compression and decompression. --- lib/stdlib/src/zstd.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stdlib/src/zstd.erl b/lib/stdlib/src/zstd.erl index f88e3a5f54..b8503214a6 100644 --- a/lib/stdlib/src/zstd.erl +++ b/lib/stdlib/src/zstd.erl @@ -644,7 +644,7 @@ decompress(Data) -> -doc """ decompress(Data, CtxOrOptions) -Decompress `Data` using the given `t:compress_parameters/0` or the `t:context/0`. +Decompress `Data` using the given `t:decompress_parameters/0` or the `t:context/0`. Example: -- 2.51.0