From df88a13e925b427c2dcceb24a96a6381a027973e Mon Sep 17 00:00:00 2001 From: Hans Svensson Date: Mon, 26 Jun 2023 13:43:17 +0200 Subject: [PATCH] fix wording in documentation --- docs/sophia_stdlib.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sophia_stdlib.md b/docs/sophia_stdlib.md index 52b4aed..feec8dd 100644 --- a/docs/sophia_stdlib.md +++ b/docs/sophia_stdlib.md @@ -392,7 +392,7 @@ Returns the hexadecimal representation of the byte array Bytes.concat : (a : bytes(m), b : bytes(n)) => bytes(m + n) ``` -Concatenates two byte arrays, if `m` and `n` are known at compile time, the +Concatenates two byte arrays. If `m` and `n` are known at compile time, the result can be used as a fixed size byte array, otherwise it has type `bytes()`.