doc/next: minor grammar fix in release notes

For #66626.
For #68545.

Change-Id: I4fe21bdaa9580eb087c849de72e98f6145121dd0
Reviewed-on: https://go-review.googlesource.com/c/go/+/633282
Reviewed-by: Robert Griesemer <gri@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
TryBot-Bypass: Robert Griesemer <gri@google.com>
This commit is contained in:
Robert Griesemer 2024-12-03 13:55:47 -08:00 committed by Gopher Robot
parent 953a1bec48
commit 2a0aeb1234
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
All `go/types` data structures that expose sequences using a pair of
methods such as `Len() int` and `At(int) T` now also methods that
methods such as `Len() int` and `At(int) T` now also have methods that
return iterators, allowing you to simplify code such as this:
```go