Skip to content

Commit dea0bc6

Browse files
authored
Merge pull request astaxie#1142 from mflaxman/patch-1
bugfix
2 parents e33737e + 03743fe commit dea0bc6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

en/07.6.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,7 @@ func main() {
148148
if err != nil {
149149
fmt.Println(err)
150150
}
151-
e, err := strconv.Itoa("1023")
152-
if err != nil {
153-
fmt.Println(err)
154-
}
151+
e := strconv.Itoa(1023)
155152
fmt.Println(a, b, c, d, e)
156153
}
157154
```

0 commit comments

Comments
 (0)