aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-11-07 14:16:05 +0000
committergingerBill <bill@gingerbill.org>2021-11-07 14:16:05 +0000
commit83be954efd2af0c7b706f935db5c72b80c49ff02 (patch)
treeae7c21d71d6e15afc6aafb05f66e991cc961b548 /examples
parent40eed2952787415d90d403f11452850286e8c574 (diff)
Minor spelling change
Diffstat (limited to 'examples')
-rw-r--r--examples/demo/demo.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin
index e43ac2548..3e34e3d49 100644
--- a/examples/demo/demo.odin
+++ b/examples/demo/demo.odin
@@ -2127,7 +2127,7 @@ or_return_operator :: proc() {
foo_2()
}
-arbitrary_precision_maths :: proc() {
+arbitrary_precision_mathematics :: proc() {
fmt.println("\n# core:math/big")
print_bigint :: proc(name: string, a: ^big.Int, base := i8(10), print_name := true, newline := true, print_extra_info := true) {
@@ -2454,7 +2454,7 @@ main :: proc() {
relative_data_types()
or_else_operator()
or_return_operator()
- arbitrary_precision_maths()
+ arbitrary_precision_mathematics()
matrix_type()
}
}