aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2024-12-27 11:29:52 -0500
committerAustin Clements <austin@google.com>2025-01-02 08:05:15 -0800
commit5e6fc827edf87a3ec92dbf1bf46df8b30064938d (patch)
tree2a54f71bfa303fee6b638ced04ec02cfdaa99644
parent660603b9713a79910b66260598546926f798c66a (diff)
downloadgo-x-website-5e6fc827edf87a3ec92dbf1bf46df8b30064938d.tar.xz
_content/doc/go1.24: remove fixed-width spacing notice
Ever since CL 362015 in 2021 it hasn't been necessary to set "fixed-width phrases with non-fixed-width spaces" because the site CSS now takes care of this typesetting convention. See also CL 638565, where I've removed this from the initial template. Change-Id: I78275c013050993219241aac40923a964f4aa69e Reviewed-on: https://go-review.googlesource.com/c/website/+/638956 Reviewed-by: Jonathan Amsterdam <jba@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
-rw-r--r--_content/doc/go1.24.md10
1 files changed, 2 insertions, 8 deletions
diff --git a/_content/doc/go1.24.md b/_content/doc/go1.24.md
index 2fd85e2b..30f93190 100644
--- a/_content/doc/go1.24.md
+++ b/_content/doc/go1.24.md
@@ -3,12 +3,6 @@ title: Go 1.24 Release Notes
template: false
---
-<!--
-NOTE: In this document and others in this directory, the convention is to
-set fixed-width phrases with non-fixed-width spaces, as in
-`hello` `world`.
--->
-
<style>
main ul li { margin: 0.5em 0; }
</style>
@@ -780,7 +774,7 @@ Go 1.25 will require macOS 12 Monterey or later.
<!-- go.dev/issue/65199, CL 603055 -->
The `go:wasmexport` directive is added for Go programs to export functions to the WebAssembly host.
-On WebAssembly System Interface Preview 1 (`GOOS=wasip1`, `GOARCH=wasm`), Go 1.24 supports
+On WebAssembly System Interface Preview 1 (`GOOS=wasip1 GOARCH=wasm`), Go 1.24 supports
building a Go program as a
[reactor/library](https://github.com/WebAssembly/WASI/blob/63a46f61052a21bfab75a76558485cf097c0dbba/legacy/application-abi.md#current-unstable-abi),
by specifying the `-buildmode=c-shared` build flag.
@@ -799,7 +793,7 @@ The support files for WebAssembly have been moved to `lib/wasm` from `misc/wasm`
### Windows {#windows}
<!-- go.dev/issue/70705 -->
-The windows/arm port (`GOOS=windows` `GOARCH=arm`) has been marked broken.
+The windows/arm port (`GOOS=windows GOARCH=arm`) has been marked broken.
See [issue #70705](/issue/70705) for details.
<!-- Maybe worth including or maybe fine not to include in Go 1.24 release notes. Someone more familiar with the change makes the call.