@@ -358,11 +358,11 @@ endif
358
358
# compress/flate appears to hang on wasi
359
359
# crypto/hmac fails on wasi, it exits with a "slice out of range" panic
360
360
# debug/plan9obj requires os.ReadAt, which is not yet supported on windows
361
- # image requires recover(), which is not yet supported on wasi
361
+ # image requires recover(), which is not yet supported on wasi
362
362
# io/ioutil requires os.ReadDir, which is not yet supported on windows or wasi
363
363
# mime/quotedprintable requires syscall.Faccessat
364
364
# strconv requires recover() which is not yet supported on wasi
365
- # text/tabwriter requries recover(), which is not yet supported on wasi
365
+ # text/tabwriter requires recover(), which is not yet supported on wasi
366
366
# text/template/parse requires recover(), which is not yet supported on wasi
367
367
# testing/fstest requires os.ReadDir, which is not yet supported on windows or wasi
368
368
@@ -963,11 +963,11 @@ lint: tools ## Lint source tree
963
963
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
964
964
.PHONY : spell
965
965
spell : tools # # Spellcheck source tree
966
- misspell -error --dict misspell.csv -i ' ackward,devided,extint,rela' $$( $(SPELLDIRSCMD ) ) * .md
966
+ misspell -error --dict misspell.csv -i ' ackward,devided,extint,rela' $$( $(SPELLDIRSCMD ) ) * .go * . md
967
967
968
968
.PHONY : spellfix
969
969
spellfix : tools # # Same as spell, but fixes what it finds
970
- misspell -w --dict misspell.csv -i ' ackward,devided,extint,rela' $$( $(SPELLDIRSCMD ) ) * .md
970
+ misspell -w --dict misspell.csv -i ' ackward,devided,extint,rela' $$( $(SPELLDIRSCMD ) ) * .go * . md
971
971
972
972
# https://www.client9.com/self-documenting-makefiles/
973
973
.PHONY : help
0 commit comments