Merge pull request #3679 from Feoramund/fix-typos

Fix some typos
This commit is contained in:
Jeroen van Rijn
2024-06-05 09:30:10 +02:00
committed by GitHub
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ __dynamic_map_get // dynamic map calls
__dynamic_map_set // dynamic map calls
## Dynamic literals ([dymamic]T and map[K]V) (can be disabled with -no-dynamic-literals)
## Dynamic literals ([dynamic]T and map[K]V) (can be disabled with -no-dynamic-literals)
__dynamic_array_reserve
__dynamic_array_append
+1 -1
View File
@@ -753,7 +753,7 @@ Array_Type :: struct {
using node: Expr,
open: tokenizer.Pos,
tag: ^Expr,
len: ^Expr, // Ellipsis node for [?]T arrray types, nil for slice types
len: ^Expr, // Ellipsis node for [?]T array types, nil for slice types
close: tokenizer.Pos,
elem: ^Expr,
}