diff options
author | dkegel-fastly <[email protected]> | 2024-04-19 06:57:01 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-19 06:57:01 -0700 |
commit | 39029cc37604c175c8b512478ba60ab617e79960 (patch) | |
tree | 16b9504cf2c4a9cd2f699542cf33e008f0b83238 /compileopts | |
parent | 712275572554d0ba8ee85e722fef8d6c91d6531a (diff) | |
download | tinygo-39029cc37604c175c8b512478ba60ab617e79960.tar.gz tinygo-39029cc37604c175c8b512478ba60ab617e79960.zip |
Run Nick G's spellchecker github.com/client9/misspell, carefuly fix what it found (#4235)
Diffstat (limited to 'compileopts')
-rw-r--r-- | compileopts/target.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compileopts/target.go b/compileopts/target.go index 66f44b7cc..da91cfa4f 100644 --- a/compileopts/target.go +++ b/compileopts/target.go @@ -26,7 +26,7 @@ type TargetSpec struct { Inherits []string `json:"inherits,omitempty"` Triple string `json:"llvm-target,omitempty"` CPU string `json:"cpu,omitempty"` - ABI string `json:"target-abi,omitempty"` // rougly equivalent to -mabi= flag + ABI string `json:"target-abi,omitempty"` // roughly equivalent to -mabi= flag Features string `json:"features,omitempty"` GOOS string `json:"goos,omitempty"` GOARCH string `json:"goarch,omitempty"` |