aboutsummaryrefslogtreecommitdiff
path: root/core/runtime
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2023-11-13 20:54:19 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2023-11-13 20:54:19 +0100
commit3e1791aa5c178cdae3f45bced10775a82abc361a (patch)
tree320e1fad6edda4d59e815ee86df1af078fedf8ad /core/runtime
parentb9a813a69db105596988939ef05153faca1f967f (diff)
Fix typos
Diffstat (limited to 'core/runtime')
-rw-r--r--core/runtime/core_builtin.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/core_builtin.odin b/core/runtime/core_builtin.odin
index a73a3d712..0348a93df 100644
--- a/core/runtime/core_builtin.odin
+++ b/core/runtime/core_builtin.odin
@@ -109,7 +109,7 @@ remove_range :: proc(array: ^$D/[dynamic]$T, lo, hi: int, loc := #caller_locatio
// `pop` will remove and return the end value of dynamic array `array` and reduces the length of `array` by 1.
//
-// Note: If the dynamic array as no elements (`len(array) == 0`), this procedure will panic.
+// Note: If the dynamic array has no elements (`len(array) == 0`), this procedure will panic.
@builtin
pop :: proc(array: ^$T/[dynamic]$E, loc := #caller_location) -> (res: E) #no_bounds_check {
assert(len(array) > 0, loc=loc)