aboutsummaryrefslogtreecommitdiff
path: root/jim_tcl.txt
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2020-02-12 23:52:41 +0100
committerSteve Bennett <steveb@workware.net.au>2020-02-18 08:45:24 +1000
commit9a4982c17d02b0ab299e5d67cb7e2964bfe5ca44 (patch)
treed55426d86237d71e962d0a6dcdc37bf9bf5a46d3 /jim_tcl.txt
parentfe66ddb115026a5e43fcf93b72780a9f281ec5d4 (diff)
downloadjimtcl-9a4982c17d02b0ab299e5d67cb7e2964bfe5ca44.zip
jimtcl-9a4982c17d02b0ab299e5d67cb7e2964bfe5ca44.tar.gz
jimtcl-9a4982c17d02b0ab299e5d67cb7e2964bfe5ca44.tar.bz2
docs: fix minor typos
Fix few typos in the documentation Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Diffstat (limited to 'jim_tcl.txt')
-rw-r--r--jim_tcl.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/jim_tcl.txt b/jim_tcl.txt
index 4c9553b..39c7984 100644
--- a/jim_tcl.txt
+++ b/jim_tcl.txt
@@ -1894,7 +1894,7 @@ clock
If no format is supplied, "%c" is used.
::
If +'boolean'+ is true, processing is performed in UTC.
- If +'boolean'+ is false (the default), processing is performeed in the local time zone.
+ If +'boolean'+ is false (the default), processing is performed in the local time zone.
+*clock scan* 'str' *-format* 'format' ?*-gmt* 'boolean?'+::
Scan the given time string using the given format string.
@@ -4779,7 +4779,7 @@ aio
+$handle *tty* ?settings?+::
If no arguments are given, returns a dictionary containing the tty settings for the stream.
If arguments are given, they must either be a dictionary, or +setting value \...+
- Abbrevations are supported for both settings and values, so the following is acceptable:
+ Abbreviations are supported for both settings and values, so the following is acceptable:
+$f tty parity e input c out raw+.
Only available on platforms that support 'termios(3)'. Supported settings are:
@@ -5062,7 +5062,7 @@ The optional 'zlib' extension provides a Tcl-compatible subset of the `zlib` com
+*inflate* 'data' '?bufferSize?'+::
Decompresses a raw, Deflate-compressed stream. When the uncompressed data size is known and specified, memory
- allocation is more efficient. Otherwise, decomperssion is chunked and therefore slower.
+ allocation is more efficient. Otherwise, decompression is chunked and therefore slower.
+*gzip* 'string' '?-level level?'+::
Compresses a buffer and adds a gzip header.
@@ -5271,12 +5271,12 @@ independently (but synchronously) of the main interpreter.
+*interp*+::
Creates and returns a new interpreter object (command).
- The created interpeter contains any built-in commands along with static extensions,
+ The created interpreter contains any built-in commands along with static extensions,
but does not include any dynamically loaded commands (package require, load).
These must be reloaded in the child interpreter if required.
+*$interp delete*+::
- Deletes the interpeter object.
+ Deletes the interpreter object.
+*$interp eval* 'script' ...+::
Evaluates a script in the context for the child interpreter, in the same way as 'eval'.