guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 02/02: doc: smobs: Fix typos.


From: Ludovic Courtès
Subject: [Guile-commits] 02/02: doc: smobs: Fix typos.
Date: Tue, 28 Jun 2016 20:59:28 +0000 (UTC)

civodul pushed a commit to branch stable-2.0
in repository guile.

commit 8f644ef87a65721748af0aaea2bba7637d02f57d
Author: Ludovic Courtès <address@hidden>
Date:   Tue Jun 28 22:51:57 2016 +0200

    doc: smobs: Fix typos.
    
    * doc/ref/api-smobs.texi (Smobs): Fix typos.
---
 doc/ref/api-smobs.texi |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/ref/api-smobs.texi b/doc/ref/api-smobs.texi
index cfabd39..5b824b0 100644
--- a/doc/ref/api-smobs.texi
+++ b/doc/ref/api-smobs.texi
@@ -1,7 +1,7 @@
 @c -*-texinfo-*-
 @c This is part of the GNU Guile Reference Manual.
address@hidden Copyright (C)  1996, 1997, 2000, 2001, 2002, 2003, 2004, 2009, 
2013, 2014
address@hidden   Free Software Foundation, Inc.
address@hidden Copyright (C)  1996, 1997, 2000, 2001, 2002, 2003, 2004, 2009, 
2013, 2014,
address@hidden   2016 Free Software Foundation, Inc.
 @c See the file guile.texi for copying conditions.
 
 @node Smobs
@@ -10,7 +10,7 @@
 @cindex smob
 
 This chapter contains reference information related to defining and
-working with smobs.  See @ref{Defining New Types (Smobs)} for a
+working with smobs.  @xref{Defining New Types (Smobs)}, for a
 tutorial-like introduction to smobs.
 
 @deftypefun scm_t_bits scm_make_smob_type (const char *name, size_t size)
@@ -65,14 +65,14 @@ Smobs}, for a discussion on finalizers and concurrency.  If 
you are
 embedding Guile in an application that is not thread-safe, and you
 define smob types that need finalization, you might want to disable
 automatic finalization, and arrange to call
address@hidden ()} yourself.
address@hidden yourself.
 
address@hidden {C Function} int scm_set_automatic_finalization_enabled (int 
enabled_p)
address@hidden {C Function} int scm_set_automatic_finalization_enabled (int 
@var{enabled_p})
 Enable or disable automatic finalization.  By default, Guile arranges to
 invoke object finalizers automatically, in a separate thread if
 possible.  Passing a zero value for @var{enabled_p} will disable
 automatic finalization for Guile as a whole.  If you disable automatic
-finalization, you will have to call @code{scm_run_finalizers ()}
+finalization, you will have to call @code{scm_run_finalizers}
 periodically.
 
 Unlike most other Guile functions, you can call
@@ -83,7 +83,7 @@ Return the previous status of automatic finalization.
 @end deftypefn
 
 @deftypefn {C Function} int scm_run_finalizers (void)
-Invoke any pending finalizers.  Returns the number of finalizers that
+Invoke any pending finalizers.  Return the number of finalizers that
 were invoked.  This function should be called when automatic
 finalization is disabled, though it may be called if it is enabled as
 well.



reply via email to

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