aboutsummaryrefslogtreecommitdiff
path: root/docs/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/README.md')
-rw-r--r--docs/README.md21
1 files changed, 0 insertions, 21 deletions
diff --git a/docs/README.md b/docs/README.md
index 4bfc2e1e..0034ab8b 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -21,7 +21,6 @@ Information about Tomo's built-in types can be found here:
- [Arrays](arrays.md)
- [Booleans](booleans.md)
- [Bytes](bytes.md)
-- [Moment](moments.md)
- [Enums](enums.md)
- [Floating point numbers](nums.md)
- [Integers](integers.md)
@@ -167,23 +166,3 @@ Nothing, aborts the program.
```tomo
fail("Oh no!")
```
-
----
-
-### `now`
-Gets the current time. This is an alias for `Moment.now()`.
-
-```tomo
-func now(->Moment)
-```
-
-None.
-
-**Returns:**
-The current moment as a Moment.
-
-**Example:**
-```tomo
->> now()
-= Sun Sep 29 20:12:33 2024
-```