From: Ludovic Courtès Date: Mon, 20 Apr 2009 22:41:25 +0000 (+0200) Subject: doc: Fix typos. X-Git-Url: https://repo.or.cz/w/guile-r6rs-libs.git/commitdiff_plain/2da8c8274c911d03ad3a9224352def51c7a8a1d1 doc: Fix typos. * doc/api-r6rs.texi (Bytevectors as Floats): Fix incorrect use of `@deffnx'. (R6RS Binary Input): Fix typo. --- diff --git a/doc/api-r6rs.texi b/doc/api-r6rs.texi index c3e8618..9185efb 100644 --- a/doc/api-r6rs.texi +++ b/doc/api-r6rs.texi @@ -332,8 +332,8 @@ at @var{index} according to @var{endianness}. @deffn {Scheme Procedure} bytevector-ieee-single-set! bv index value endianness @deffnx {Scheme Procedure} bytevector-ieee-double-set! bv index value endianness -@deffnx scm_r6rs_bytevector_ieee_single_set_x (bv, index, value, endianness) -@deffnx scm_r6rs_bytevector_ieee_double_set_x (bv, index, value, endianness) +@deffnx {C Function} scm_r6rs_bytevector_ieee_single_set_x (bv, index, value, endianness) +@deffnx {C Function} scm_r6rs_bytevector_ieee_double_set_x (bv, index, value, endianness) Store real number @var{value} in @var{bv} at @var{index} according to @var{endianness}. @end deffn @@ -350,8 +350,8 @@ at @var{index} according to the host's native endianness. @deffn {Scheme Procedure} bytevector-ieee-single-native-set! bv index value @deffnx {Scheme Procedure} bytevector-ieee-double-native-set! bv index value -@deffnx scm_r6rs_bytevector_ieee_single_native_set_x (bv, index, value) -@deffnx scm_r6rs_bytevector_ieee_double_native_set_x (bv, index, value) +@deffnx {C Function} scm_r6rs_bytevector_ieee_single_native_set_x (bv, index, value) +@deffnx {C Function} scm_r6rs_bytevector_ieee_double_native_set_x (bv, index, value) Store real number @var{value} in @var{bv} at @var{index} according to the host's native endianness. @end deffn @@ -530,7 +530,7 @@ Finally, if @var{close} is not @code{#f}, it must be a thunk. It is invoked when the custom binary input port is closed. Using a custom binary input port, the @code{open-bytevector-input-port} -could be implemented as follows: +procedure could be implemented as follows: @lisp (define (open-bytevector-input-port source)