Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
karamaru-alpha committed Feb 15, 2024
1 parent d7c2d6e commit e186835
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ cf. [Fixing For Loops in Go 1.22](https://go.dev/blog/loopvar-preview)

```go
for i, v := range []int{1, 2, 3} {
i := i // The copy of the 'for' variable "i" can be deleted \(Go 1\.22\+\)
v := v // The copy of the 'for' variable "v" can be deleted \(Go 1\.22\+\)
i := i // The copy of the 'for' variable "i" can be deleted (Go 1.22+)
v := v // The copy of the 'for' variable "v" can be deleted (Go 1.22+)
_, _ = i, v
}

for i := 1; i <= 3; i++ {
i := i // The copy of the 'for' variable "i" can be deleted \(Go 1\.22\+\)
i := i // The copy of the 'for' variable "i" can be deleted (Go 1.22+)
_ = i
}
```
Expand Down

0 comments on commit e186835

Please sign in to comment.