Skip to content

Commit 18015e8

Browse files
bradfitzgopherbot
authored andcommitted
doc/next: clean up some Go 1.26 release notes
The Var.Kind stuff was in Go 1.25. And the net additions were in the wrong tense and didn't have links. Change-Id: Ie710e1d41c714fe627a3a21a5afb6b7f78301f68 Reviewed-on: https://go-review.googlesource.com/c/go/+/724780 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Mark Freeman <markfreeman@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
1 parent 4be5451 commit 18015e8

File tree

3 files changed

+6
-19
lines changed

3 files changed

+6
-19
lines changed
Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
11
### Minor changes to the library {#minor_library_changes}
2-
3-
#### go/types
4-
5-
The `Var.Kind` method returns an enumeration of type `VarKind` that
6-
classifies the variable (package-level, local, receiver, parameter,
7-
result, or struct field). See issue #70250.
8-
9-
Callers of `NewVar` or `NewParam` are encouraged to call `Var.SetKind`
10-
to ensure that this attribute is set correctly in all cases.
Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
11
### Minor changes to the library {#minor_library_changes}
2-
3-
#### go/types
4-
5-
The `Var.Kind` method returns an enumeration of type `VarKind` that
6-
classifies the variable (package-level, local, receiver, parameter,
7-
result, or struct field). See issue #70250.
8-
9-
Callers of `NewVar` or `NewParam` are encouraged to call `Var.SetKind`
10-
to ensure that this attribute is set correctly in all cases.
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
Added context aware dial functions for TCP, UDP, IP and Unix networks.
1+
The new <code>Dialer</code> methods
2+
<a href="/pkg/net/#Dialer.DialIP"><code>DialIP</code></a>,
3+
<a href="/pkg/net/#Dialer.DialTCP"><code>DialTCP</code></a>,
4+
<a href="/pkg/net/#Dialer.DialUDP"><code>DialUDP</code></a>, and
5+
<a href="/pkg/net/#Dialer.DialUnix"><code>DialUnix</code></a>
6+
permit dialing specific network types with context values.

0 commit comments

Comments
 (0)