about summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-03-13 17:31:28 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-03-13 17:31:28 -0700
commit7c843c0b8ace581198f56954d336ad61d74f8188 (patch)
tree014f9bfde09ff55962ffebd9ca6309f3b639dae8 /doc
parente67e61a063ce1573919c672bf9ca6d6eb0191244 (diff)
downloadteliva-7c843c0b8ace581198f56954d336ad61d74f8188.tar.gz
.
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual.html b/doc/manual.html
index c2910f4..4834d9f 100644
--- a/doc/manual.html
+++ b/doc/manual.html
@@ -3601,7 +3601,7 @@ idiomatic Teliva uses some slightly different primitives.
 
 <p>
 This function opens a file exclusively for reading, and returns a
-<tt>channel</tt> (NOT a file as regular Lua) or <b>nil</b> on error.
+<tt>channel</tt> (NOT a file as in Lua) or <b>nil</b> on error.
 <tt>recv()</tt> from the channel to read a line at a time from the file.
 
 <p>
@@ -3624,7 +3624,7 @@ to use it.
 
 <p>
 This function opens a file exclusively for writing, and returns a
-<tt>channel</tt> (NOT a file as regular Lua) or <b>nil</b> on error.
+<tt>channel</tt> (NOT a file as in Lua) or <b>nil</b> on error.
 <tt>send()</tt> to the channel will write to the file. <tt>close()</tt> on the
 channel will persist the changes and make them externally visible. All writes
 are hidden until <tt>close()</tt>.