summary refs log tree commit diff stats
path: root/doc/nimrodc.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/nimrodc.txt')
-rwxr-xr-xdoc/nimrodc.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/nimrodc.txt b/doc/nimrodc.txt
index 06a0f4500..06d447b7e 100755
--- a/doc/nimrodc.txt
+++ b/doc/nimrodc.txt
@@ -190,7 +190,7 @@ Define               Effect
 ``useRealtimeGC``    Enables support of Nimrod's GC for *soft* realtime 
                      systems. See the documentation of the `gc <gc.html>`_ 
                      for further information.
-``nodejs``           The EcmaScript target is actually ``node.js``.
+``nodejs``           The JS target is actually ``node.js``.
 ``ssl``              Enables OpenSSL support for the sockets module.
 ``memProfiler``      Enables memory profiling for the native GC.
 ==================   =========================================================
@@ -549,17 +549,17 @@ efficient:
   else: quit(errorStr(p, "unknown variable: " & k.key))

 
 
-The ECMAScript target
+The JavaScript target
 =====================
 
-Nimrod can also generate `ECMAScript`:idx: (also known as `JavaScript`:idx:)
-code. However, the ECMAScript code generator is experimental!
+Nimrod can also generate `JavaScript`:idx: code. However, the
+JavaScript code generator is experimental!
 
-Nimrod targets ECMAScript 1.5 which is supported by any widely used browser.
-Since ECMAScript does not have a portable means to include another module,
+Nimrod targets JavaScript 1.5 which is supported by any widely used browser.
+Since JavaScript does not have a portable means to include another module,
 Nimrod just generates a long ``.js`` file.
 
-Features or modules that the ECMAScript platform does not support are not
+Features or modules that the JavaScript platform does not support are not
 available. This includes:
 
 * manual memory management (``alloc``, etc.)
@@ -571,7 +571,7 @@ available. This includes:
 
 However, the modules `strutils`:idx:, `math`:idx:, and `times`:idx: are
 available! To access the DOM, use the `dom`:idx: module that is only
-available for the ECMAScript platform.
+available for the JavaScript platform.
 
 To compile a Nimrod module into a ``.js`` file use the ``js`` command; the
 default is a  ``.js`` file that is supposed to be referenced in an ``.html``