aboutsummaryrefslogtreecommitdiffhomepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorDan Kegel <[email protected]>2024-08-14 14:36:16 -0700
committerRon Evans <[email protected]>2024-08-15 10:34:35 +0200
commitd3e67cf18c5ed61be3e43bb02c10327638c8b9ed (patch)
tree57c9eb0853b97f050ddedc2f6618d6bcd1cec6e6 /GNUmakefile
parent5d82a7eee6568effb8f6daff1a28c80b97a9d109 (diff)
downloadtinygo-d3e67cf18c5ed61be3e43bb02c10327638c8b9ed.tar.gz
tinygo-d3e67cf18c5ed61be3e43bb02c10327638c8b9ed.zip
make spellfix: fix top level files, too.
Do manual fix in GNUmakefile, since spellchecking that is just too meta.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 68bb4430f..bc0e1e48f 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -358,11 +358,11 @@ endif
# compress/flate appears to hang on wasi
# crypto/hmac fails on wasi, it exits with a "slice out of range" panic
# debug/plan9obj requires os.ReadAt, which is not yet supported on windows
-# image requires recover(), which is not yet supported on wasi
+# image requires recover(), which is not yet supported on wasi
# io/ioutil requires os.ReadDir, which is not yet supported on windows or wasi
# mime/quotedprintable requires syscall.Faccessat
# strconv requires recover() which is not yet supported on wasi
-# text/tabwriter requries recover(), which is not yet supported on wasi
+# text/tabwriter requires recover(), which is not yet supported on wasi
# text/template/parse requires recover(), which is not yet supported on wasi
# testing/fstest requires os.ReadDir, which is not yet supported on windows or wasi
@@ -963,11 +963,11 @@ lint: tools ## Lint source tree
SPELLDIRSCMD=find . -depth 1 -type d | egrep -wv '.git|lib|llvm|src'; find src -depth 1 | egrep -wv 'device|internal|net|vendor'; find src/internal -depth 1 -type d | egrep -wv src/internal/wasi
.PHONY: spell
spell: tools ## Spellcheck source tree
- misspell -error --dict misspell.csv -i 'ackward,devided,extint,rela' $$( $(SPELLDIRSCMD) ) *.md
+ misspell -error --dict misspell.csv -i 'ackward,devided,extint,rela' $$( $(SPELLDIRSCMD) ) *.go *.md
.PHONY: spellfix
spellfix: tools ## Same as spell, but fixes what it finds
- misspell -w --dict misspell.csv -i 'ackward,devided,extint,rela' $$( $(SPELLDIRSCMD) ) *.md
+ misspell -w --dict misspell.csv -i 'ackward,devided,extint,rela' $$( $(SPELLDIRSCMD) ) *.go *.md
# https://www.client9.com/self-documenting-makefiles/
.PHONY: help