guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 06/06: doc: Fix a few typos in vm section.


From: Ludovic Courtès
Subject: [Guile-commits] 06/06: doc: Fix a few typos in vm section.
Date: Wed, 27 May 2020 16:48:41 -0400 (EDT)

civodul pushed a commit to branch master
in repository guile.

commit 431056793ac10d7f5e4c4523380cea3d0de0f5e8
Author: Eric Bavier <bavier@member.fsf.org>
AuthorDate: Fri May 22 23:11:03 2020 -0500

    doc: Fix a few typos in vm section.
    
    * doc/ref/vm.texi: Fix some grammar and typos.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 doc/ref/vm.texi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/ref/vm.texi b/doc/ref/vm.texi
index 8ee3dcc..d45a3ad 100644
--- a/doc/ref/vm.texi
+++ b/doc/ref/vm.texi
@@ -1375,7 +1375,7 @@ as a @code{scm} value directly.
 
 @deftypefn Instruction {} make-non-immediate s24:@var{dst} n32:@var{offset}
 Load a pointer to statically allocated memory into @var{dst}.  The
-object's memory is will be found @var{offset} 32-bit words away from the
+object's memory will be found @var{offset} 32-bit words away from the
 current instruction pointer.  Whether the object is mutable or immutable
 depends on where it was allocated by the compiler, and loaded by the
 loader.
@@ -1384,7 +1384,7 @@ loader.
 Sometimes you need to load up a code pointer into a register; for this,
 use @code{load-label}.
 
-@deftypefn Instruction {} make-non-immediate s24:@var{dst} l32:@var{offset}
+@deftypefn Instruction {} load-label s24:@var{dst} l32:@var{offset}
 Load a label @var{offset} words away from the current @code{ip} and
 write it to @var{dst}.  @var{offset} is a signed 32-bit integer.
 @end deftypefn
@@ -1422,7 +1422,7 @@ pointer.  @var{offset} is a signed value.
 Fields of non-immediates may need to be fixed up at load time, because
 we do not know in advance at what address they will be loaded.  This is
 the case, for example, for a pair containing a non-immediate in one of
-its fields.  @code{static-ref} and @code{static-patch!} are used in
+its fields.  @code{static-set!} and @code{static-patch!} are used in
 these situations.
 
 @deftypefn Instruction {} static-set! s24:@var{src} lo32:@var{offset}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]