From f69727785da5f3a2b5d897e8ab8c17dd3f0648fa Mon Sep 17 00:00:00 2001 From: Frank Wang <1454884738@qq.com> Date: Sat, 7 Sep 2024 11:52:27 -0500 Subject: [PATCH] fix: wrong `output` return type --- moonbit-docs/docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonbit-docs/docs/README.md b/moonbit-docs/docs/README.md index e3194916..1b5184c2 100644 --- a/moonbit-docs/docs/README.md +++ b/moonbit-docs/docs/README.md @@ -1886,7 +1886,7 @@ trait Hash { trait Show { // writes a string representation of `Self` into a `Logger` - output(Self, Logger) -> String + output(Self, Logger) -> Unit to_string(Self) -> String }