From 3d30efde3b25949260de1f4c683fab67f3d62ae6 Mon Sep 17 00:00:00 2001 From: Daffa Zaky <67418594+daffaz@users.noreply.github.com> Date: Thu, 14 Oct 2021 00:48:05 +0700 Subject: [PATCH] Update 02.3.md --- en/02.3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02.3.md b/en/02.3.md index d47e0b6f..d5ae4893 100644 --- a/en/02.3.md +++ b/en/02.3.md @@ -193,7 +193,7 @@ Use the `func` keyword to define a function. func funcName(input1 type1, input2 type2) (output1 type1, output2 type2) { // function body // multi-value return - return value1, value2 + return output1, output2 } ``` We can extrapolate the following information from the example above.