diff options
author | Paul Duncan <pabs@pablotron.org> | 2022-01-19 18:05:56 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2022-01-19 18:05:56 -0500 |
commit | 76d4a7866667a98f1e818a3051916fbc4eb4ae0c (patch) | |
tree | 002c3093e8c5074a74bbd246ae108bd980f8e844 /content/posts | |
parent | 0ba4dda920185d40de0d7ae18d5b867ae39cef89 (diff) | |
download | pablotron.org-76d4a7866667a98f1e818a3051916fbc4eb4ae0c.tar.bz2 pablotron.org-76d4a7866667a98f1e818a3051916fbc4eb4ae0c.zip |
content/posts/2022-01-17-generics-in-go-1.18.md: fix spec wording and link
Diffstat (limited to 'content/posts')
-rw-r--r-- | content/posts/2022-01-17-generics-in-go-1.18.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/content/posts/2022-01-17-generics-in-go-1.18.md b/content/posts/2022-01-17-generics-in-go-1.18.md index 256312b..8ba610e 100644 --- a/content/posts/2022-01-17-generics-in-go-1.18.md +++ b/content/posts/2022-01-17-generics-in-go-1.18.md @@ -305,7 +305,7 @@ Other useful tidbits: * The standard library is still backwards compatible, so there is no need to rewrite your existing code. * There are [two new tutorials][] which explain generics and fuzzing. -* [Go type constraints spec][spec] +* [Type constraints section][] of [Go spec][]. **Update (2021-01-19):** Minor wording changes, add information about tilde prefixes in type constraints. @@ -326,5 +326,7 @@ tilde prefixes in type constraints. "Type erasure." [two new tutorials]: https://go.dev/blog/tutorials-go1.18 "New Go tutorials which explain generics and fuzzing." -[spec]: https://tip.golang.org/ref/spec#Type_constraints +[type constraints section]: https://tip.golang.org/ref/spec#Type_constraints "Type constraints section of Go specification." +[go spec]: https://tip.golang.org/ref/spec + "Go language specification." |