diff options
author | Dan Kegel <[email protected]> | 2024-08-05 17:14:28 -0700 |
---|---|---|
committer | Dan Kegel <[email protected]> | 2024-08-12 10:45:24 -0700 |
commit | 93d523b2ffbe76ebcf2eeb9c6578c43788d97200 (patch) | |
tree | a417ae4f15832be70abcfbb955d116afa0650ceb | |
parent | 05f108930daff439f6ffb90819ef6ed43e3dc423 (diff) | |
download | tinygo-93d523b2ffbe76ebcf2eeb9c6578c43788d97200.tar.gz tinygo-93d523b2ffbe76ebcf2eeb9c6578c43788d97200.zip |
GNUMakefile: remove exception for inbetween, fix instance now found by 'make spell'
-rw-r--r-- | GNUmakefile | 2 | ||||
-rw-r--r-- | src/runtime/gc_stack_portable.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index a27489cc2..14283589c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -962,7 +962,7 @@ lint: ## Lint source tree .PHONY: spell spell: ## Spellcheck source tree - go run github.com/client9/misspell/cmd/misspell -i 'ackward,devided,extint,inbetween,programmmer,rela' $$( find . -depth 1 -type d | egrep -w -v 'lib|llvm|src/net' ) + go run github.com/client9/misspell/cmd/misspell -i 'ackward,devided,extint,programmmer,rela' $$( find . -depth 1 -type d | egrep -w -v 'lib|llvm|src/net' ) # https://www.client9.com/self-documenting-makefiles/ .PHONY: help diff --git a/src/runtime/gc_stack_portable.go b/src/runtime/gc_stack_portable.go index f822d8482..d35e16e30 100644 --- a/src/runtime/gc_stack_portable.go +++ b/src/runtime/gc_stack_portable.go @@ -26,7 +26,7 @@ type stackChainObject struct { // // Therefore, we only need to scan the system stack. // It is relatively easy to scan the system stack while we're on it: we can -// simply read __stack_pointer and __global_base and scan the area inbetween. +// simply read __stack_pointer and __global_base and scan the area in between. // Unfortunately, it's hard to get the system stack pointer while we're on a // goroutine stack. But when we're on a goroutine stack, the system stack is in // the scheduler which means there shouldn't be anything on the system stack |