aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/internal/task/task_stack_avr.S
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/task/task_stack_avr.S')
-rw-r--r--src/internal/task/task_stack_avr.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/task/task_stack_avr.S b/src/internal/task/task_stack_avr.S
index 2e68b1754..d8aed8b96 100644
--- a/src/internal/task/task_stack_avr.S
+++ b/src/internal/task/task_stack_avr.S
@@ -28,7 +28,7 @@ tinygo_startTask:
// After return, exit this goroutine. This is a tail call.
#if __AVR_ARCH__ == 2 || __AVR_ARCH__ == 25
// Small memory devices (≤8kB flash) that do not have the long call
- // instruction availble will need to use rcall instead.
+ // instruction available will need to use rcall instead.
// Note that they will probably not be able to run more than the main
// goroutine anyway, but this file is compiled for all AVRs so it needs to
// compile at least.