diff options
author | Dan Kegel <[email protected]> | 2024-08-14 13:52:51 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-08-15 10:34:35 +0200 |
commit | 5368dd22c5c8bb7c7ae0e854569dd2ebcca504bb (patch) | |
tree | a38b7af6ad9971a4eb36ae1ad1769a5589baae24 /builder | |
parent | 194396d71570318eb581245c49778341474d8ef6 (diff) | |
download | tinygo-5368dd22c5c8bb7c7ae0e854569dd2ebcca504bb.tar.gz tinygo-5368dd22c5c8bb7c7ae0e854569dd2ebcca504bb.zip |
misspell.csv: add new misspellings; also check in result of 'make spellfix'.
Diffstat (limited to 'builder')
-rw-r--r-- | builder/build.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/build.go b/builder/build.go index f728cde79..780dc8df4 100644 --- a/builder/build.go +++ b/builder/build.go @@ -1259,7 +1259,7 @@ func determineStackSizes(mod llvm.Module, executable string) ([]string, map[stri } // Goroutines need to be started and finished and take up some stack space - // that way. This can be measured by measuing the stack size of + // that way. This can be measured by measuring the stack size of // tinygo_startTask. if numFuncs := len(functions["tinygo_startTask"]); numFuncs != 1 { return nil, nil, fmt.Errorf("expected exactly one definition of tinygo_startTask, got %d", numFuncs) |