aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README8
-rw-r--r--STYLE2
-rw-r--r--TODO4
3 files changed, 7 insertions, 7 deletions
diff --git a/README b/README
index 6a5ecea..214e5b7 100644
--- a/README
+++ b/README
@@ -118,8 +118,8 @@ To compile jim itself try:
make jim
-In non-linux systems you may have to complile without "-ldl" because
-it's not needed but will cause a compilation error (no configure for
+On systems other than GNU/Linux, you may have to compile without "-ldl"
+because it's not needed, but will cause a compilation error (no configure for
now... applications embedding Jim will probably have one already).
In order to avoid to link against 'dl' just use:
@@ -165,14 +165,14 @@ You should see a notepad application running.
ANSI-I/O, SQLITE
================
-There is documentation under the "doc" dictory about the "ANSI I/O"
+There is documentation under the "doc" directory about the "ANSI I/O"
and "SQLITE" extensions.
SDL
===
The SDL extension is currently undocumented (work in progress), but
-there is enought to start to play. That's an example script:
+there is enough to start to play. That's an example script:
package require sdl
diff --git a/STYLE b/STYLE
index 906d744..eae5528 100644
--- a/STYLE
+++ b/STYLE
@@ -54,7 +54,7 @@ GOTO
Goto is allowed every time it makes the code cleaner, like in complex
functions that need to handle exceptions, there is often an "err" label
at the end of the function where allocated resources are freed before to exit
-with an error. Goto is also used in order to excape multiple nexted loops.
+with an error. Goto is also used in order to escape multiple nested loops.
----------
C FEATURES
diff --git a/TODO b/TODO
index ff7cc06..0365f15 100644
--- a/TODO
+++ b/TODO
@@ -7,7 +7,7 @@ CORE LANGUAGE FEATURES
CORE COMMANDS
- All the missing standard core commands not related to I/O, namespaces, ...
-- The current [expr] needs a lot of work, expecially operators && and ||
+- The current [expr] needs a lot of work, especially operators && and ||
are not lazy. Math functions are not present but probably will never
be added as expr functions, but as Tcl commands, like [sin], [cos] and
so on.
@@ -70,7 +70,7 @@ IMPLEMENTATION ISSUES
equivalent) handle in a list inside the interpreter structure. When
the interpreter is freed all this handles should be closed with dlclose().
- *AssocData() function should allow to specify a delProc C function like
- in the Tcl API. When the interpreter is destroied all the delProc functions
+ in the Tcl API. When the interpreter is destroyed all the delProc functions
should be called to free the memory before to free the interpreter.
- Convert dicts from lists directly without to pass from the string repr.