aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-05-26 20:29:49 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-05-26 20:29:49 +0200
commit725cc53c6586633d34afb08b4070bb2e9bacb677 (patch)
tree2b80303f4e53575af93bf969df5eeff827740496 /base
parent4f7ed35435a908d5118a917f329db97434d922ef (diff)
Typo
Diffstat (limited to 'base')
-rw-r--r--base/builtin/builtin.odin6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/builtin/builtin.odin b/base/builtin/builtin.odin
index 019fd93ff..7b38b25e7 100644
--- a/base/builtin/builtin.odin
+++ b/base/builtin/builtin.odin
@@ -10,13 +10,13 @@ true :: 0==0
// The following constants are added in `checker.cpp`'s `init_universal` procedure.
/*
- An `enum` value indicating what the CPU architecture of the target is.
+ An `enum` value indicating the target's CPU architecture.
Possible values are: `.amd64`, `.i386`, `.arm32`, `.arm64`, `.wasm32`, `.wasm64p32`, and `.riscv64`.
*/
ODIN_ARCH :: ODIN_ARCH
/*
- A `string` indicating what the CPU architecture of the target is.
+ A `string` indicating the target's CPU architecture.
Possible values are: "amd64", "i386", "arm32", "arm64", "wasm32", "wasm64p32", "riscv64".
*/
ODIN_ARCH_STRING :: ODIN_ARCH_STRING
@@ -69,7 +69,7 @@ ODIN_DISABLE_ASSERT :: ODIN_DISABLE_ASSERT
ODIN_ENDIAN :: ODIN_ENDIAN
/*
- An `enum` value indicating the endianness of the target.
+ An `string` indicating the endianness of the target.
Possible values are: "little" and "big".
*/
ODIN_ENDIAN_STRING :: ODIN_ENDIAN_STRING