aboutsummaryrefslogtreecommitdiff
path: root/core/math/big/logical.odin
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2021-07-20 19:51:39 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2021-08-11 20:59:50 +0200
commit4eadd0867d6529340ad1da3ab2af56d62b40f3d2 (patch)
treea63a0ec6d425e5fb8f5857b019afdf2ff750bfb4 /core/math/big/logical.odin
parent9dba17cf87a208f41f2d53bc9a2be14ed70a396a (diff)
big: Continuing to refactor.
Diffstat (limited to 'core/math/big/logical.odin')
-rw-r--r--core/math/big/logical.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/big/logical.odin b/core/math/big/logical.odin
index 9ecb4fba3..6c857a2f2 100644
--- a/core/math/big/logical.odin
+++ b/core/math/big/logical.odin
@@ -4,7 +4,7 @@ package big
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
Made available under Odin's BSD-2 license.
- A BigInt implementation in Odin.
+ An arbitrary precision mathematics implementation in Odin.
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
The code started out as an idiomatic source port of libTomMath, which is in the public domain, with thanks.