diff options
author | Marius Vollmer <mvo@zagadka.de> | 2005-04-01 15:06:41 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2005-04-01 15:06:41 +0000 |
commit | ad0c2091bdebce5d6715a13ade9de814f7a81d5d (patch) | |
tree | c9a04732958c45ac6875fbfd1056f91cebe684c1 | |
parent | 33b320ae2a4f654fdced606ddff09037fd5eaaae (diff) | |
download | guile-ad0c2091bdebce5d6715a13ade9de814f7a81d5d.tar.gz |
Fixed some typos.
-rw-r--r-- | doc/ref/api-memory.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ref/api-memory.texi b/doc/ref/api-memory.texi index 98615cc77..0481a3851 100644 --- a/doc/ref/api-memory.texi +++ b/doc/ref/api-memory.texi @@ -120,12 +120,12 @@ be freed by a garbage collection. The memory can be freed with @code{free}. There is also @code{scm_gc_realloc} and @code{scm_realloc}, to be used -in place of @code{realloc} when appropriate, @code{scm_gc_calloc} and -@code{scm_calloc}, to be used in place of @code{calloc} when +in place of @code{realloc} when appropriate, and @code{scm_gc_calloc} +and @code{scm_calloc}, to be used in place of @code{calloc} when appropriate. -There function @code{scm_frame_free} can be useful when memory should -be freed when a frame is left, @xref{Frames}. +The function @code{scm_frame_free} can be useful when memory should be +freed when a frame is left, @xref{Frames}. For really specialized needs, take at look at @code{scm_gc_register_collectable_memory} and |