summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Djurfeldt <mikael@djurfeldt.com>2018-10-21 14:53:34 +0200
committerMikael Djurfeldt <mikael@djurfeldt.com>2018-10-21 14:54:38 +0200
commitbb0860a0e58b331fbd9d4b202548651b01cfe5e8 (patch)
tree87c4f4bf1f9f731e2c3fa1e155417ee52a651944
parent0e2f46264796a1da17044293842f89d734071ba1 (diff)
downloadguile-bb0860a0e58b331fbd9d4b202548651b01cfe5e8.tar.gz
Spelling fixes
* doc/ref/data-rep.texi: Spelling * doc/ref/vm.texi: Spelling
-rw-r--r--doc/ref/data-rep.texi2
-rw-r--r--doc/ref/vm.texi4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/data-rep.texi b/doc/ref/data-rep.texi
index 7099c87d0..23a1bb4bf 100644
--- a/doc/ref/data-rep.texi
+++ b/doc/ref/data-rep.texi
@@ -491,7 +491,7 @@ Before Guile 2.0, Guile had a custom garbage collector that allocated
heap objects in units of 2-word @dfn{cells}. With the move to the
BDW-GC collector in Guile 2.0, Guile can allocate heap objects of any
size, and the concept of a cell is now obsolete. Still, we mention
-it here as the name stil appears in various low-level interfaces.
+it here as the name still appears in various low-level interfaces.
@deftypefn Macro {scm_t_bits *} SCM_UNPACK_POINTER (SCM @var{x})
@deftypefnx Macro {scm_t_cell *} SCM2PTR (SCM @var{x})
diff --git a/doc/ref/vm.texi b/doc/ref/vm.texi
index 66fda17bf..44220a0c6 100644
--- a/doc/ref/vm.texi
+++ b/doc/ref/vm.texi
@@ -16,7 +16,7 @@ high-level code to low-level code. Sometimes these languages are
implemented using compilers: programs that translate high-level
programs to equivalent low-level code, and pass on that low-level code
to some other language implementation. Each of these languages can be
-throught to be virtual machines: they offer programs an abstract machine
+thought to be virtual machines: they offer programs an abstract machine
on which to run.
Guile implements a number of interpreters and compilers on different
@@ -86,7 +86,7 @@ needs (tail calls, multiple values, @code{call/cc}) and can provide
optimized inline instructions for Guile as well (GC-managed allocations,
type checks, etc.).
-Guie also includes a just-in-time (JIT) compiler to translate bytecode
+Guile also includes a just-in-time (JIT) compiler to translate bytecode
to native code. Because Guile uses the portable GNU Lightning library
to emit that code, we keep the benefits of portability while also
benefitting from fast native code. To avoid too much time spent in the