diff options
author | Araq <rumpf_a@web.de> | 2014-08-05 21:54:39 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-05 21:54:39 +0200 |
commit | 1e8a9aead060d27099bdd8634cbab6b89ecd9995 (patch) | |
tree | 898f262c221a08e40db4ade94baacba33e7a1912 | |
parent | cf61072cc94649dc08c849ef2c8b076c28de5b35 (diff) | |
download | Nim-1e8a9aead060d27099bdd8634cbab6b89ecd9995.tar.gz |
fixes typos
-rw-r--r-- | doc/spawn.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/spawn.txt b/doc/spawn.txt index ed500f3a5..c5c96ecf8 100644 --- a/doc/spawn.txt +++ b/doc/spawn.txt @@ -53,13 +53,13 @@ restrictions / changes: * ``spawn`` within a ``parallel`` section has special semantics. * Every location of the form ``a[i]`` and ``a[i..j]`` and ``dest`` where ``dest`` is part of the pattern ``dest = spawn f(...)`` has to be - provable disjoint. This is called the *disjoint check*. + provably disjoint. This is called the *disjoint check*. * Every other complex location ``loc`` that is used in a spawned proc (``spawn f(loc)``) has to be immutable for the duration of the ``parallel`` section. This is called the *immutability check*. Currently it is not specified what exactly "complex location" means. We need to make this an optimization! -* Every array access has to be provable within bounds. This is called +* Every array access has to be provably within bounds. This is called the *bounds check*. * Slices are optimized so that no copy is performed. This optimization is not yet performed for ordinary slices outside of a ``parallel`` section. Slices |