Skip to content

Commit 24d49a2

Browse files
authored
Merge pull request softchris#11 from subashkc/fix_return_values_on_strconv_itoa
strconv.Itoa only returns 1 value so removed the extra _
2 parents 8b7cd04 + 793076b commit 24d49a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

01-basics/04-conversions/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ You might be dealing with the opposite; you have an integer, and you want it to
212212
213213
```go
214214
var noOfPlayers = 8
215-
str, _ := strconv.Itoa(noOfPlayers)
215+
str := strconv.Itoa(noOfPlayers)
216216
217217
```
218218

0 commit comments

Comments
 (0)