]> Cypherpunks repositories - gostls13.git/commitdiff
doc: fix grammar and spelling
authorJohn Bampton <jbampton@gmail.com>
Tue, 29 Apr 2025 11:46:09 +0000 (11:46 +0000)
committerGopher Robot <gobot@golang.org>
Tue, 29 Apr 2025 14:37:04 +0000 (07:37 -0700)
Minor typo fixes in the docs

Change-Id: I56b5d0318936aecc7775fb5bc70534456707da49
GitHub-Last-Rev: b4d042f8a997aa0d3824d8f9350dd24090b21073
GitHub-Pull-Request: golang/go#73531
Reviewed-on: https://go-review.googlesource.com/c/go/+/668815
Reviewed-by: Keith Randall <khr@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Auto-Submit: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
doc/godebug.md
doc/next/5-toolchain.md

index f3ad820d3cddea879b43a97eb541113504b6cbf1..23427c85b5793c00eefecb851e2efb46cbb21301 100644 (file)
@@ -370,7 +370,7 @@ certificate policy OIDs with components larger than 31 bits. By default this
 field is only used during parsing, when it is populated with policy OIDs, but
 not used during marshaling. It can be used to marshal these larger OIDs, instead
 of the existing PolicyIdentifiers field, by using the
-[`x509usepolicies` setting.](/pkg/crypto/x509/#CreateCertificate).
+[`x509usepolicies` setting](/pkg/crypto/x509/#CreateCertificate).
 
 
 ### Go 1.21
index c4d4744168d7804590dcbc3eb58f4fe3e609ca5b..c270e9dfc96c7cffff71a97557c5d7c7238f215f 100644 (file)
@@ -4,7 +4,7 @@
 
 The compiler and linker in Go 1.25 now generate debug information
 using [DWARF version 5](https://dwarfstd.org/dwarf5std.html); the
-newer DWARF version reduces the space required for debuging
+newer DWARF version reduces the space required for debugging
 information in Go binaries.
 DWARF 5 generation is gated by the "dwarf5" GOEXPERIMENT; this
 functionality can be disabled (for now) using GOEXPERIMENT=nodwarf5.
@@ -35,7 +35,7 @@ the error. The main result of `os.Open` can be a nil pointer if the error result
 But because of [a compiler bug](/issue/72860), this program ran successfully under
 Go versions 1.21 through 1.24 (in violation of the Go spec). It will no longer run
 successfully in Go 1.25. If this change is affecting your code, the solution is to put
-the non-nil error check earlier in your code, preferrably immediately after
+the non-nil error check earlier in your code, preferably immediately after
 the error-generating statement.
 
 ## Assembler {#assembler}