]> Cypherpunks repositories - gostls13.git/commitdiff
doc/next: clean up some Go 1.26 release notes
authorBrad Fitzpatrick <bradfitz@golang.org>
Wed, 26 Nov 2025 18:11:41 +0000 (10:11 -0800)
committerGopher Robot <gobot@golang.org>
Mon, 1 Dec 2025 17:41:45 +0000 (09:41 -0800)
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>
doc/initial/6-stdlib/99-minor/0-heading.md
doc/next/6-stdlib/99-minor/0-heading.md
doc/next/6-stdlib/99-minor/net/49097.md

index e80ebc64c380fd517487018a8fd5fcff792b5f41..266d98f496a7793d6dc37ffc6fd33af3eaae0bf0 100644 (file)
@@ -1,10 +1 @@
 ### Minor changes to the library {#minor_library_changes}
-
-#### go/types
-
-The `Var.Kind` method returns an enumeration of type `VarKind` that
-classifies the variable (package-level, local, receiver, parameter,
-result, or struct field). See issue #70250.
-
-Callers of `NewVar` or `NewParam` are encouraged to call `Var.SetKind`
-to ensure that this attribute is set correctly in all cases.
index e80ebc64c380fd517487018a8fd5fcff792b5f41..266d98f496a7793d6dc37ffc6fd33af3eaae0bf0 100644 (file)
@@ -1,10 +1 @@
 ### Minor changes to the library {#minor_library_changes}
-
-#### go/types
-
-The `Var.Kind` method returns an enumeration of type `VarKind` that
-classifies the variable (package-level, local, receiver, parameter,
-result, or struct field). See issue #70250.
-
-Callers of `NewVar` or `NewParam` are encouraged to call `Var.SetKind`
-to ensure that this attribute is set correctly in all cases.
index bb7947b0a11377e9b413d58580fc17b1cbf4986f..02b28d8e50c249f22535461e70826291e1fd6b83 100644 (file)
@@ -1 +1,6 @@
-Added context aware dial functions for TCP, UDP, IP and Unix networks.
+The new <code>Dialer</code> methods
+<a href="/pkg/net/#Dialer.DialIP"><code>DialIP</code></a>,
+<a href="/pkg/net/#Dialer.DialTCP"><code>DialTCP</code></a>,
+<a href="/pkg/net/#Dialer.DialUDP"><code>DialUDP</code></a>, and
+<a href="/pkg/net/#Dialer.DialUnix"><code>DialUnix</code></a>
+permit dialing specific network types with context values.