aboutsummaryrefslogtreecommitdiff
path: root/docs/iterators.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-11-24 16:18:21 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-11-24 16:18:21 -0500
commit1e3fb8a2c0cca385d65c52679411b118b5fb4641 (patch)
treee8e7ae5b4a8b4f39ed867c238f1a05494b6a50ac /docs/iterators.md
parent0e10313d64f54dd587ebbcd5f413bd999333c911 (diff)
Rename "NULL" to "NONE"
Diffstat (limited to 'docs/iterators.md')
-rw-r--r--docs/iterators.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/iterators.md b/docs/iterators.md
index ee777cfe..064af9c2 100644
--- a/docs/iterators.md
+++ b/docs/iterators.md
@@ -22,7 +22,7 @@ successively gets one line from a file at a time until the file is exhausted:
>> iter()
= "line three" : Text?
>> iter()
-= NULL : Text?
+= NONE : Text?
for line in (./test.txt):each_line():
pass