aboutsummaryrefslogtreecommitdiff
path: root/README.namespaces
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2016-02-11 10:17:47 +1000
committerSteve Bennett <steveb@workware.net.au>2016-02-11 10:17:47 +1000
commitd56bd19304e9361f125aaec93d8f6cf8b8191592 (patch)
treee94d3c60e65f8b48de7e4244f2a7fe8e02ca355b /README.namespaces
parent2fdf40d33a3d5019b05580c2d9d7d69392188e2b (diff)
downloadjimtcl-d56bd19304e9361f125aaec93d8f6cf8b8191592.zip
jimtcl-d56bd19304e9361f125aaec93d8f6cf8b8191592.tar.gz
jimtcl-d56bd19304e9361f125aaec93d8f6cf8b8191592.tar.bz2
docs: fix more typos
Some identified by frgm Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'README.namespaces')
-rw-r--r--README.namespaces4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.namespaces b/README.namespaces
index e08d68e..ef50769 100644
--- a/README.namespaces
+++ b/README.namespaces
@@ -67,7 +67,7 @@ Variable resolution
The variable command in Jim Tcl has the same syntax as Tcl, but is closer in behaviour to the global command.
The variable command creates a link from a local variable to a namespace variable, possibly initialising it.
-For example, the following procedure uses 'variable' to initialse and access myvar.
+For example, the following procedure uses 'variable' to initialise and access myvar.
proc ::test::myproc {} {
variable myvar 4
@@ -89,7 +89,7 @@ And similarly, the following will only access local variables
set x 3
namespace eval ::test {
- # This will incremement a local variable, not ::x
+ # This will increment a local variable, not ::x
incr x
# This will also increment a local variable
incr abc::def