Skip to content

Commit 184e305

Browse files
authoredNov 28, 2021
Merge pull request astaxie#1178 from daffaz/daffaz
Typo 02.3.md
2 parents ff0913c + 3d30efd commit 184e305

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎en/02.3.md

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.