diff options
author | Marvin Borner | 2023-12-14 20:14:49 +0100 |
---|---|---|
committer | Marvin Borner | 2023-12-15 03:04:16 +0100 |
commit | d22c013e4e74889a82004b05aab1158b98cfafc9 (patch) | |
tree | 272e33637521ab46fb375be8a72e3b6983755c0b /std/Number | |
parent | b572418b4a4f6ba647a9aaed0bd82bfe9189d9a8 (diff) |
Minor documentation fixes
Diffstat (limited to 'std/Number')
-rw-r--r-- | std/Number/Binary.bruijn | 1 | ||||
-rw-r--r-- | std/Number/Ternary.bruijn | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/std/Number/Binary.bruijn b/std/Number/Binary.bruijn index ea837e3..28a3f7f 100644 --- a/std/Number/Binary.bruijn +++ b/std/Number/Binary.bruijn @@ -1,4 +1,5 @@ # MIT License, Copyright (c) 2023 Marvin Borner +# binary implementation of T.Æ. Mogensen (see refs in README) # TODO: Use abstract representation for logic instead of listifying :import std/Combinator . diff --git a/std/Number/Ternary.bruijn b/std/Number/Ternary.bruijn index e9b402c..e1b3893 100644 --- a/std/Number/Ternary.bruijn +++ b/std/Number/Ternary.bruijn @@ -1,7 +1,6 @@ # MIT License, Copyright (c) 2022 Marvin Borner -# This file defines the most basic mathematical operations +# ternary implementation of T.Æ. Mogensen and Douglas W. Jones (see refs in README) # → refer to std/Math for more advanced functions -# Heavily inspired by the works of T.Æ. Mogensen and Douglas W. Jones (see refs in README) :import std/Box B :import std/Combinator . |