mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-16 16:50:21 +02:00
fix typos in the manual bits generated from source comments.
* libguile/bitvectors.c, libguile/chars.c, libguile/deprecated.c, libguile/numbers.c, libguile/random.c, libguile/read.c, libguile/root.c, libguile/srfi-1.c, libguile/srfi-13.c, libguile/srfi-14.c, libguile/uniform.c: Fix typos, add missing newlines.
This commit is contained in:
parent
ecb8733562
commit
ffb62a43dc
11 changed files with 27 additions and 27 deletions
|
@ -160,7 +160,7 @@ scm_c_uniform_vector_ref (SCM v, size_t idx)
|
|||
SCM_DEFINE (scm_uniform_vector_ref, "uniform-vector-ref", 2, 0, 0,
|
||||
(SCM v, SCM idx),
|
||||
"Return the element at index @var{idx} of the\n"
|
||||
"homogenous numeric vector @var{v}.")
|
||||
"homogeneous numeric vector @var{v}.")
|
||||
#define FUNC_NAME s_scm_uniform_vector_ref
|
||||
{
|
||||
return scm_c_uniform_vector_ref (v, scm_to_size_t (idx));
|
||||
|
@ -178,7 +178,7 @@ scm_c_uniform_vector_set_x (SCM v, size_t idx, SCM val)
|
|||
SCM_DEFINE (scm_uniform_vector_set_x, "uniform-vector-set!", 3, 0, 0,
|
||||
(SCM v, SCM idx, SCM val),
|
||||
"Set the element at index @var{idx} of the\n"
|
||||
"homogenous numeric vector @var{v} to @var{val}.")
|
||||
"homogeneous numeric vector @var{v} to @var{val}.")
|
||||
#define FUNC_NAME s_scm_uniform_vector_set_x
|
||||
{
|
||||
scm_c_uniform_vector_set_x (v, scm_to_size_t (idx), val);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue