diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2011-02-07 00:29:51 +0100 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2011-02-09 22:28:49 +0000 |
commit | ffb62a43dcfe537c3f5773e9d7b2f8a46fdb9b47 (patch) | |
tree | 947f0e30e70f710cd763af7b2bef6c5b61e5fc77 /libguile/srfi-13.c | |
parent | ecb8733562079227b96b1a2884cd3cce6d3974bb (diff) | |
download | guile-ffb62a43dcfe537c3f5773e9d7b2f8a46fdb9b47.tar.gz |
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.
Diffstat (limited to 'libguile/srfi-13.c')
-rw-r--r-- | libguile/srfi-13.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libguile/srfi-13.c b/libguile/srfi-13.c index 9efe2753b..ab933c2ad 100644 --- a/libguile/srfi-13.c +++ b/libguile/srfi-13.c @@ -1640,14 +1640,14 @@ SCM_DEFINE (scm_string_suffix_ci_p, "string-suffix-ci?", 2, 4, 0, SCM_DEFINE (scm_string_index, "string-index", 2, 2, 0, (SCM s, SCM char_pred, SCM start, SCM end), "Search through the string @var{s} from left to right, returning\n" - "the index of the first occurence of a character which\n" + "the index of the first occurrence of a character which\n" "\n" "@itemize @bullet\n" "@item\n" "equals @var{char_pred}, if it is character,\n" "\n" "@item\n" - "satisifies the predicate @var{char_pred}, if it is a procedure,\n" + "satisfies the predicate @var{char_pred}, if it is a procedure,\n" "\n" "@item\n" "is in the set @var{char_pred}, if it is a character set.\n" @@ -1705,14 +1705,14 @@ SCM_DEFINE (scm_string_index, "string-index", 2, 2, 0, SCM_DEFINE (scm_string_index_right, "string-index-right", 2, 2, 0, (SCM s, SCM char_pred, SCM start, SCM end), "Search through the string @var{s} from right to left, returning\n" - "the index of the last occurence of a character which\n" + "the index of the last occurrence of a character which\n" "\n" "@itemize @bullet\n" "@item\n" "equals @var{char_pred}, if it is character,\n" "\n" "@item\n" - "satisifies the predicate @var{char_pred}, if it is a procedure,\n" + "satisfies the predicate @var{char_pred}, if it is a procedure,\n" "\n" "@item\n" "is in the set if @var{char_pred} is a character set.\n" @@ -1770,14 +1770,14 @@ SCM_DEFINE (scm_string_index_right, "string-index-right", 2, 2, 0, SCM_DEFINE (scm_string_rindex, "string-rindex", 2, 2, 0, (SCM s, SCM char_pred, SCM start, SCM end), "Search through the string @var{s} from right to left, returning\n" - "the index of the last occurence of a character which\n" + "the index of the last occurrence of a character which\n" "\n" "@itemize @bullet\n" "@item\n" "equals @var{char_pred}, if it is character,\n" "\n" "@item\n" - "satisifies the predicate @var{char_pred}, if it is a procedure,\n" + "satisfies the predicate @var{char_pred}, if it is a procedure,\n" "\n" "@item\n" "is in the set if @var{char_pred} is a character set.\n" @@ -1792,14 +1792,14 @@ SCM_DEFINE (scm_string_rindex, "string-rindex", 2, 2, 0, SCM_DEFINE (scm_string_skip, "string-skip", 2, 2, 0, (SCM s, SCM char_pred, SCM start, SCM end), "Search through the string @var{s} from left to right, returning\n" - "the index of the first occurence of a character which\n" + "the index of the first occurrence of a character which\n" "\n" "@itemize @bullet\n" "@item\n" "does not equal @var{char_pred}, if it is character,\n" "\n" "@item\n" - "does not satisify the predicate @var{char_pred}, if it is a\n" + "does not satisfy the predicate @var{char_pred}, if it is a\n" "procedure,\n" "\n" "@item\n" @@ -1858,7 +1858,7 @@ SCM_DEFINE (scm_string_skip, "string-skip", 2, 2, 0, SCM_DEFINE (scm_string_skip_right, "string-skip-right", 2, 2, 0, (SCM s, SCM char_pred, SCM start, SCM end), "Search through the string @var{s} from right to left, returning\n" - "the index of the last occurence of a character which\n" + "the index of the last occurrence of a character which\n" "\n" "@itemize @bullet\n" "@item\n" @@ -1932,7 +1932,7 @@ SCM_DEFINE (scm_string_count, "string-count", 2, 2, 0, "equals @var{char_pred}, if it is character,\n" "\n" "@item\n" - "satisifies the predicate @var{char_pred}, if it is a procedure.\n" + "satisfies the predicate @var{char_pred}, if it is a procedure.\n" "\n" "@item\n" "is in the set @var{char_pred}, if it is a character set.\n" @@ -2459,7 +2459,7 @@ SCM_DEFINE (scm_string_concatenate_shared, "string-concatenate/shared", 1, 0, 0, SCM_DEFINE (scm_string_concatenate_reverse_shared, "string-concatenate-reverse/shared", 1, 2, 0, (SCM ls, SCM final_string, SCM end), "Like @code{string-concatenate-reverse}, but the result may\n" - "share memory with the the strings in the @var{ls} arguments.") + "share memory with the strings in the @var{ls} arguments.") #define FUNC_NAME s_scm_string_concatenate_reverse_shared { /* Just call the non-sharing version. */ @@ -2969,7 +2969,7 @@ SCM_DEFINE (scm_string_tokenize, "string-tokenize", 1, 3, 0, SCM_DEFINE (scm_string_split, "string-split", 2, 0, 0, (SCM str, SCM chr), - "Split the string @var{str} into the a list of the substrings delimited\n" + "Split the string @var{str} into a list of the substrings delimited\n" "by appearances of the character @var{chr}. Note that an empty substring\n" "between separator characters will result in an empty string in the\n" "result list.\n" |