From 200223b0fa2c40c5d308387ae4aa27d4f43e24d8 Mon Sep 17 00:00:00 2001
From: Bob Nystrom
Date: Wed, 1 Jul 2015 08:13:20 -0700
Subject: [PATCH] Regenerate docs.
---
classes.html | 2 +-
core/bool.html | 13 ++++---
core/class.html | 5 ++-
core/fiber.html | 5 ++-
core/fn.html | 5 ++-
core/index.html | 6 ++-
core/io.html | 93 ++++++++++++++++++++++++++++++++++++++++++++++
core/list.html | 7 ++--
core/map.html | 5 ++-
core/null.html | 9 +++--
core/num.html | 5 ++-
core/object.html | 23 +++++++++---
core/range.html | 5 ++-
core/sequence.html | 9 ++++-
core/string.html | 5 ++-
lists.html | 2 +-
maps.html | 41 +++++++++++++++-----
style.css | 44 +++++++++++-----------
values.html | 2 +-
19 files changed, 214 insertions(+), 72 deletions(-)
create mode 100644 core/io.html
diff --git a/classes.html b/classes.html
index 1254666b..9a4463ea 100644
--- a/classes.html
+++ b/classes.html
@@ -159,7 +159,7 @@ an object, or produce a new object from it:
Since the parentheses are part of the method's signature, the callsite and
definition have to agree. These don't work:
-"string".count()
+"string".count()
list.clear
diff --git a/core/bool.html b/core/bool.html
index 20b02dbc..d3ffd2d5 100644
--- a/core/bool.html
+++ b/core/bool.html
@@ -38,6 +38,7 @@
Range
Sequence
String
+
IO
@@ -47,10 +48,10 @@
Methods
! operator
Returns the logical complement of the value.
-
> !true
-false
-> !false
-true
+> !true
+false
+> !false
+true
@@ -61,9 +62,9 @@