Skip to content

Commit fd54936

Browse files
callthingsoffgopherbot
authored andcommitted
doc: simplify links for release notes
Change-Id: If9e3c5a58726ae3628d2e835d71f1a4708594c11 Reviewed-on: https://go-review.googlesource.com/c/go/+/586575 LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Jonathan Amsterdam <[email protected]>
1 parent f726c8d commit fd54936

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

doc/next/6-stdlib/2-unique.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### New unique package
22

3-
The new [unique](/pkg/unique) package provides facilities for
3+
The new [unique] package provides facilities for
44
canonicalizing values (like "interning" or "hash-consing").
55

66
Any value of comparable type may be canonicalized with the new

doc/next/6-stdlib/3-iter.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
### Iterators
22

3-
The new [`iter` package](/pkg/iter/) provides the basic definitions for
4-
working with user-defined iterators.
3+
The new [iter] package provides the basic definitions for working with
4+
user-defined iterators.
55

6-
The [`slices` package](/pkg/slices/) adds several functions that work
7-
with iterators:
6+
The [slices] package adds several functions that work with iterators:
87
- [All](/pkg/slices#All) returns an iterator over slice indexes and values.
98
- [Values](/pkg/slices#Values) returns an iterator over slice elements.
109
- [Backward](/pkg/slices#Backward) returns an iterator that loops over
@@ -22,8 +21,7 @@ with iterators:
2221
- [Chunk](/pkg/slices#Chunk) returns an iterator over consecutive
2322
sub-slices of up to n elements of a slice.
2423

25-
The [`maps` package](/pkg/maps/) adds several functions that work
26-
with iterators:
24+
The [maps] package adds several functions that work with iterators:
2725
- [All](/pkg/maps#All) returns an iterator over key-value pairs from m.
2826
- [Keys](/pkg/maps#Keys) returns an iterator over keys in m.
2927
- [Values](/pkg/maps#Values) returns an iterator over values in m.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<!-- Issue #61395 -->
2-
The new [`atomic.And`](/pkg/sync/atomic#And) and [`atomic.Or`](/pkg/sync/atomic#Or)
3-
operators apply a bitwise `AND` or `OR` to the given input, returning the old value.
2+
The new [And] and [Or] operators apply a bitwise `AND` or `OR` to
3+
the given input, returning the old value.

0 commit comments

Comments
 (0)