Skip to content

Commit 3d30efd

Browse files
authored
Update 02.3.md
1 parent a7e3921 commit 3d30efd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/02.3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Use the `func` keyword to define a function.
193193
func funcName(input1 type1, input2 type2) (output1 type1, output2 type2) {
194194
// function body
195195
// multi-value return
196-
return value1, value2
196+
return output1, output2
197197
}
198198
```
199199
We can extrapolate the following information from the example above.

0 commit comments

Comments
 (0)