Re: some more typos

Shiro Kawai <[email protected]> Mon, 16 Dec 2024 18:24:16 -1000
Newsgroups gmane.lisp.scheme.gauche
Message-ID <CALN0JNGr8qg7tZSfGcCiD0bNbqxN_YMAs0JSdUpCbPwjauSegg@mail.gmail.com>
--===============6943763975340351129==
Content-Type: multipart/alternative; boundary="0000000000003529ca06296facd8"

--0000000000003529ca06296facd8
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Thanks.  Patch applied.

--shiro


On Mon, Dec 16, 2024 at 9:12=E2=80=AFAM Jens Thiele <[email protected]> wrote:

> diff --git a/DIST b/DIST
> index dfcb1dbfd..9504c7c91 100755
> --- a/DIST
> +++ b/DIST
> @@ -122,7 +122,7 @@ do_self_host_test () {
>      echo "************************* STAGE2 INSTALL
> ***************************"
>      (cd $destdir/stage2; \
>       PATH=3D$XPATH make install && PATH=3D$XPATH make -s install-check)
> -    echo "************************ EXTENTION EXAMPLES
> ************************"
> +    echo "************************ EXTENSION EXAMPLES
> ************************"
>      mkdir -p $destdir/spigot
>      (cd $destdir/spigot; \
>       PATH=3D$XPATH $srcdir/examples/spigot/configure --prefix=3D$destdir=
 && \
> diff --git a/doc/corelib.texi b/doc/corelib.texi
> index 93416f625..74b5882bb 100644
> --- a/doc/corelib.texi
> +++ b/doc/corelib.texi
> @@ -20341,7 +20341,7 @@ thread may evaluate @var{expression}
> simultaneously.
>  In general, you shouldn't have side-effecting computation
>  in @var{expression}---even if it is only evaluated once,
>  you may not exactly know when the evaluation occur, so
> -having side-effects there is a bad ides.
> +having side-effects there is a bad idea.
>  (See @code{force} below for multi-thread semantics).
>  @c JP
>  @var{expression}=E3=81=AF=E4=B8=80=E5=9B=9E=E4=BB=A5=E4=B8=8A=E8=A9=95=
=E4=BE=A1=E3=81=95=E3=82=8C=E5=BE=97=E3=82=8B=E3=81=93=E3=81=A8=E3=81=AB=E6=
=B0=97=E3=82=92=E3=81=A4=E3=81=91=E3=81=A6=E3=81=8F=E3=81=A0=E3=81=95=E3=81=
=84=E3=80=82
> @@ -32783,7 +32783,7 @@ Returns @code{#t} if @var{obj} is a time object.
>  The argument must be either a @code{<time>} object, a real number,
>  or @code{#f}.  If it is an absolute @code{<time>} object, it specifies
>  an absolute point of time.  If it is a @code{<time>} object of
> -@code{time-duration} type, it is taken as a relative tiem from the
> current time.
> +@code{time-duration} type, it is taken as a relative time from the
> current time.
>  If it is a real number, it specifies
>  the number of seconds from the current time.
>
> diff --git a/doc/modr7rs.texi b/doc/modr7rs.texi
> index 632b35da8..b3e9cebe2 100644
> --- a/doc/modr7rs.texi
> +++ b/doc/modr7rs.texi
> @@ -10811,7 +10811,7 @@ The @var{failure} procedure is expected to
> tail-call either
>
>  The @var{insert} procedure passed to @var{failure} takes
>  two arguments, @var{value} and @var{retval}.  It creates
> -a new mapping that has all the entires of @var{m} and
> +a new mapping that has all the entries of @var{m} and
>  a new entry with @var{k} and @var{value}, and returns
>  the new mapping and @var{retval}.
>
> diff --git a/doc/modutil.texi b/doc/modutil.texi
> index a7ef2a292..9654035ad 100644
> --- a/doc/modutil.texi
> +++ b/doc/modutil.texi
> @@ -4687,8 +4687,8 @@ key in @var{immap}, respectively.  If @var{immap} i=
s
> empty,
>  @mdindex data.priority-map
>  @c EN
>  Priority map is a dictionary that can map keys to values, while
> -the entires are sorted by their @emph{values}.
> -(If the entires are sorted by keys, it's a treemap--@pxref{Treemaps}).
> +the entries are sorted by their @emph{values}.
> +(If the entries are sorted by keys, it's a treemap--@pxref{Treemaps}).
>  @c JP
>  =E3=83=97=E3=83=A9=E3=82=A4=E3=82=AA=E3=83=AA=E3=83=86=E3=82=A3=E3=83=9E=
=E3=83=83=E3=83=97=E3=81=AF=E3=80=81=E3=82=AD=E3=83=BC=E3=82=92=E5=80=A4=E3=
=81=AB=E3=83=9E=E3=83=83=E3=83=94=E3=83=B3=E3=82=B0=E3=81=99=E3=82=8B=E8=BE=
=9E=E6=9B=B8=E3=81=A7=E3=80=81
>  =E3=82=A8=E3=83=B3=E3=83=88=E3=83=AA=E3=81=8C=E5=80=A4=E3=81=AB=E3=82=88=
=E3=81=A3=E3=81=A6=E3=82=BD=E3=83=BC=E3=83=88=E3=81=95=E3=82=8C=E3=81=A6=E3=
=81=84=E3=82=8B=E3=82=82=E3=81=AE=E3=81=A7=E3=81=99
> @@ -11472,7 +11472,7 @@ displays lines matching @code{#/regexp/} with lin=
e
> numbers.
>  @c COMMON
>
>  @example
> -(file-filer-fold
> +(file-filter-fold
>    (^[line nc out]
>      (when (#/regexp/ line) (format out "~3d: ~a\n" nc line))
>      (+ nc 1))
> diff --git a/ext/digest/data/vector006.info b/ext/digest/data/
> vector006.info
> index 4a5fce5e1..0c86392da 100644
> --- a/ext/digest/data/vector006.info
> +++ b/ext/digest/data/vector006.info
> @@ -1,7 +1,7 @@
>  DESCRIPTION:
> -    The output samples for thi test vector come exclusively from my
> +    The output samples for this test vector come exclusively from my
>      own implementation and so may be completely incorrect.  Use with
> -    a very large grain of salt.  The input sample exactly the same
> +    a very large grain of salt.  The input sample has exactly the same
>      length as the SHA-256 block length.
>
>      (Total length of test vector data: 64)
> diff --git a/ext/digest/data/vector007.info b/ext/digest/data/
> vector007.info
> index 7343e73b2..6d89f5f58 100644
> --- a/ext/digest/data/vector007.info
> +++ b/ext/digest/data/vector007.info
> @@ -1,7 +1,7 @@
>  DESCRIPTION:
> -    The output samples for thi test vector come exclusively from my
> +    The output samples for this test vector come exclusively from my
>      own implementation and so may be completely incorrect.  Use with
> -    a very large grain of salt.  The input sample one byte shorter
> +    a very large grain of salt.  The input sample is one byte shorter
>      than the SHA-256 block length.
>
>      (Total length of test vector data: 63)
> diff --git a/ext/digest/data/vector008.info b/ext/digest/data/
> vector008.info
> index e3166b7dc..875ceadca 100644
> --- a/ext/digest/data/vector008.info
> +++ b/ext/digest/data/vector008.info
> @@ -1,5 +1,5 @@
>  DESCRIPTION:
> -    The output samples for thi test vector come exclusively from my
> +    The output samples for this test vector come exclusively from my
>      own implementation and so may be completely incorrect.  Use with
>      a very large grain of salt.  The input sample exactly the same
>      length as the SHA-384 and SHA-512 block lengths.
> diff --git a/ext/digest/data/vector009.info b/ext/digest/data/
> vector009.info
> index 1b2653b92..4d1e88c9a 100644
> --- a/ext/digest/data/vector009.info
> +++ b/ext/digest/data/vector009.info
> @@ -1,5 +1,5 @@
>  DESCRIPTION:
> -    The output samples for thi test vector come exclusively from my
> +    The output samples for this test vector come exclusively from my
>      own implementation and so may be completely incorrect.  Use with
>      a very large grain of salt.  The input sample is one byte shorter
>      in length than the SHA-384 and SHA-512 block lengths.
> diff --git a/ext/digest/data/vector010.info b/ext/digest/data/
> vector010.info
> index 55b972d29..56ab6e97b 100644
> --- a/ext/digest/data/vector010.info
> +++ b/ext/digest/data/vector010.info
> @@ -1,5 +1,5 @@
>  DESCRIPTION:
> -    The output samples for thi test vector come exclusively from my
> +    The output samples for this test vector come exclusively from my
>      own implementation and so may be completely incorrect.  Use with
>      a very large grain of salt.  The input sample is exactly 5 times
>      size of the SHA-256 block length.
> diff --git a/ext/digest/data/vector011.info b/ext/digest/data/
> vector011.info
> index b37a2c228..c976966a1 100644
> --- a/ext/digest/data/vector011.info
> +++ b/ext/digest/data/vector011.info
> @@ -1,5 +1,5 @@
>  DESCRIPTION:
> -    The output samples for thi test vector come exclusively from my
> +    The output samples for this test vector come exclusively from my
>      own implementation and so may be completely incorrect.  Use with
>      a very large grain of salt.  The input sample is one byte less
>      than 7 times the size of the SHA-256 block length.
> diff --git a/ext/digest/data/vector012.info b/ext/digest/data/
> vector012.info
> index bbc5aba4f..fbb696176 100644
> --- a/ext/digest/data/vector012.info
> +++ b/ext/digest/data/vector012.info
> @@ -1,5 +1,5 @@
>  DESCRIPTION:
> -    The output samples for thi test vector come exclusively from my
> +    The output samples for this test vector come exclusively from my
>      own implementation and so may be completely incorrect.  Use with
>      a very large grain of salt.  The input sample is exactly 5 times
>      size of the SHA-384 and SHA-512 block lengths.
> diff --git a/ext/digest/data/vector014.info b/ext/digest/data/
> vector014.info
> index 976455583..da8499756 100644
> --- a/ext/digest/data/vector014.info
> +++ b/ext/digest/data/vector014.info
> @@ -1,7 +1,7 @@
>  DESCRIPTION:
>      The output samples for this test vector come exclusively from my
>      own implementation and so may be completely incorrect.  Use with
> -    a very large grain of salt.  The input sample 4 KB of misc.
> +    a very large grain of salt.  The input sample is 4 KB of misc.
>      data.
>
>      (Total length of test vector data: 16384)
> diff --git a/ext/srfi/test-srfi-194.scm b/ext/srfi/test-srfi-194.scm
> index df01751a7..e5851e987 100644
> --- a/ext/srfi/test-srfi-194.scm
> +++ b/ext/srfi/test-srfi-194.scm
> @@ -1,4 +1,4 @@
> -;; srfi.194 depends on data.random, so test it iere.
> +;; srfi.194 depends on data.random, so test it here.
>
>  (use gauche.test)
>  (test-start "SRFI-194")
> diff --git a/lib/gauche/experimental/README
> b/lib/gauche/experimental/README
> index e632e2ade..28e953de1 100644
> --- a/lib/gauche/experimental/README
> +++ b/lib/gauche/experimental/README
> @@ -1,10 +1,10 @@
> -The contents of this directory is for various experiment.
> +The contents of this directory is for various experiments.
>  For now, they're mostly syntactic sugars just to make program shorter,
>  rather than introducing new abstractions.   The merit of such syntactic
>  sugars is highly subjective, only to be estimated after substantial use
>  in production code.   These modules are to try them in the real situatio=
n.
>
> -It is highly possible that, after some periodof trial, we decide to drop
> +It is highly possible that, after some period of trial, we decide to dro=
p
>  or change some of the stuff here.  Unlike other 'unofficial' modules whi=
ch
>  tend to stick if they are around a few years, the stuff here may be
> changed
>  even after use of several years.  If you want to use these in your code,
> diff --git a/lib/gauche/interactive.scm b/lib/gauche/interactive.scm
> index 7265ce374..535484bbb 100644
> --- a/lib/gauche/interactive.scm
> +++ b/lib/gauche/interactive.scm
> @@ -433,7 +433,7 @@
>         (set! *controls* (apply write-controls-copy *controls* kvs)))]))
>
>  ;; This shadows gauche#read-eval-print-loop
> -;; NB: We ignore reader argument,  The whole point of thsi procedure
> +;; NB: We ignore reader argument,  The whole point of this procedure
>  ;; is to provide an editable reader, so the user doesn't need to
> customize it.
>  (define (read-eval-print-loop :optional (reader #f)
>                                          (evaluator #f)
> diff --git a/lib/srfi/226.scm b/lib/srfi/226.scm
> index 486dd46cb..998c3f9cb 100644
> --- a/lib/srfi/226.scm
> +++ b/lib/srfi/226.scm
> @@ -1,5 +1,5 @@
>  ;;
> -;; Compsite library of entire SRFI-226
> +;; Composite library of entire SRFI-226
>  ;;
>
>  (define-module srfi.226
> diff --git a/lib/srfi/5.scm b/lib/srfi/5.scm
> index 1dbc90f45..907c60f0d 100644
> --- a/lib/srfi/5.scm
> +++ b/lib/srfi/5.scm
> @@ -24,7 +24,7 @@
>      ((let (name binding ...) body ...)
>       (%let-loop name (binding ...) () () (body ...)))
>
> -    ;; standrad named let (which may have rest parameter)
> +    ;; standard named let (which may have rest parameter)
>      ((let name bindings body ...)
>       (%let-loop name bindings () () (body ...)))
>
> diff --git a/src/hash.c b/src/hash.c
> index c1480903a..0b0bcadd9 100644
> --- a/src/hash.c
> +++ b/src/hash.c
> @@ -1078,8 +1078,8 @@ ScmObj Scm_HashTableStat(ScmHashTable *table)
>   * Printer
>   */
>
> -/* Note: When pprint is used, hash table priting is directly handled by
> pprint
> -   and this is never called. */
> +/* Note: When pprint is used, hash table printing is directly handled
> +   by pprint and this is never called. */
>  static void hash_print(ScmObj obj, ScmPort *port,
>                         ScmWriteContext *ctx SCM_UNUSED)
>  {
> diff --git a/src/thread.c b/src/thread.c
> index 55cc9db68..e26a22f5e 100644
> --- a/src/thread.c
> +++ b/src/thread.c
> @@ -390,7 +390,7 @@ ScmObj Scm_ThreadSleep(ScmObj timeout)
>     safe---the thread may leave memory in inconsistent state.
>
>     In any way, the target thread is marked as SCM_VM_TERMINATED.  If we
> -   avoid the forcible termiantion, the thread remains in the system, but
> +   avoid the forcible termination, the thread remains in the system, but
>     as soon as it unblocks and resumes execution of Gauche code, it will
>     see the terminate request and terminate itself.
>  */
>
>
> _______________________________________________
> Gauche-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/gauche-devel
>

--0000000000003529ca06296facd8
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">Thanks.=C2=A0 Patch applied.<div><br></div><div>--shiro</d=
iv><div><br></div></div><br><div class=3D"gmail_quote gmail_quote_container=
"><div dir=3D"ltr" class=3D"gmail_attr">On Mon, Dec 16, 2024 at 9:12=E2=80=
=AFAM Jens Thiele &lt;<a href=3D"mailto:[email protected]">[email protected]</a>&=
gt; wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0=
px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">diff =
--git a/DIST b/DIST<br>
index dfcb1dbfd..9504c7c91 100755<br>
--- a/DIST<br>
+++ b/DIST<br>
@@ -122,7 +122,7 @@ do_self_host_test () {<br>
=C2=A0 =C2=A0 =C2=A0echo &quot;************************* STAGE2 INSTALL ***=
************************&quot;<br>
=C2=A0 =C2=A0 =C2=A0(cd $destdir/stage2; \<br>
=C2=A0 =C2=A0 =C2=A0 PATH=3D$XPATH make install &amp;&amp; PATH=3D$XPATH ma=
ke -s install-check)<br>
-=C2=A0 =C2=A0 echo &quot;************************ EXTENTION EXAMPLES *****=
*******************&quot;<br>
+=C2=A0 =C2=A0 echo &quot;************************ EXTENSION EXAMPLES *****=
*******************&quot;<br>
=C2=A0 =C2=A0 =C2=A0mkdir -p $destdir/spigot<br>
=C2=A0 =C2=A0 =C2=A0(cd $destdir/spigot; \<br>
=C2=A0 =C2=A0 =C2=A0 PATH=3D$XPATH $srcdir/examples/spigot/configure --pref=
ix=3D$destdir &amp;&amp; \<br>
diff --git a/doc/corelib.texi b/doc/corelib.texi<br>
index 93416f625..74b5882bb 100644<br>
--- a/doc/corelib.texi<br>
+++ b/doc/corelib.texi<br>
@@ -20341,7 +20341,7 @@ thread may evaluate @var{expression} simultaneously=
.<br>
=C2=A0In general, you shouldn&#39;t have side-effecting computation<br>
=C2=A0in @var{expression}---even if it is only evaluated once,<br>
=C2=A0you may not exactly know when the evaluation occur, so<br>
-having side-effects there is a bad ides.<br>
+having side-effects there is a bad idea.<br>
=C2=A0(See @code{force} below for multi-thread semantics).<br>
=C2=A0@c JP<br>
=C2=A0@var{expression}=E3=81=AF=E4=B8=80=E5=9B=9E=E4=BB=A5=E4=B8=8A=E8=A9=
=95=E4=BE=A1=E3=81=95=E3=82=8C=E5=BE=97=E3=82=8B=E3=81=93=E3=81=A8=E3=81=AB=
=E6=B0=97=E3=82=92=E3=81=A4=E3=81=91=E3=81=A6=E3=81=8F=E3=81=A0=E3=81=95=E3=
=81=84=E3=80=82<br>
@@ -32783,7 +32783,7 @@ Returns @code{#t} if @var{obj} is a time object.<br=
>
=C2=A0The argument must be either a @code{&lt;time&gt;} object, a real numb=
er,<br>
=C2=A0or @code{#f}.=C2=A0 If it is an absolute @code{&lt;time&gt;} object, =
it specifies<br>
=C2=A0an absolute point of time.=C2=A0 If it is a @code{&lt;time&gt;} objec=
t of<br>
-@code{time-duration} type, it is taken as a relative tiem from the current=
 time.<br>
+@code{time-duration} type, it is taken as a relative time from the current=
 time.<br>
=C2=A0If it is a real number, it specifies<br>
=C2=A0the number of seconds from the current time.<br>
<br>
diff --git a/doc/modr7rs.texi b/doc/modr7rs.texi<br>
index 632b35da8..b3e9cebe2 100644<br>
--- a/doc/modr7rs.texi<br>
+++ b/doc/modr7rs.texi<br>
@@ -10811,7 +10811,7 @@ The @var{failure} procedure is expected to tail-cal=
l either<br>
<br>
=C2=A0The @var{insert} procedure passed to @var{failure} takes<br>
=C2=A0two arguments, @var{value} and @var{retval}.=C2=A0 It creates<br>
-a new mapping that has all the entires of @var{m} and<br>
+a new mapping that has all the entries of @var{m} and<br>
=C2=A0a new entry with @var{k} and @var{value}, and returns<br>
=C2=A0the new mapping and @var{retval}.<br>
<br>
diff --git a/doc/modutil.texi b/doc/modutil.texi<br>
index a7ef2a292..9654035ad 100644<br>
--- a/doc/modutil.texi<br>
+++ b/doc/modutil.texi<br>
@@ -4687,8 +4687,8 @@ key in @var{immap}, respectively.=C2=A0 If @var{immap=
} is empty,<br>
=C2=A0@mdindex data.priority-map<br>
=C2=A0@c EN<br>
=C2=A0Priority map is a dictionary that can map keys to values, while<br>
-the entires are sorted by their @emph{values}.<br>
-(If the entires are sorted by keys, it&#39;s a treemap--@pxref{Treemaps}).=
<br>
+the entries are sorted by their @emph{values}.<br>
+(If the entries are sorted by keys, it&#39;s a treemap--@pxref{Treemaps}).=
<br>
=C2=A0@c JP<br>
=C2=A0=E3=83=97=E3=83=A9=E3=82=A4=E3=82=AA=E3=83=AA=E3=83=86=E3=82=A3=E3=83=
=9E=E3=83=83=E3=83=97=E3=81=AF=E3=80=81=E3=82=AD=E3=83=BC=E3=82=92=E5=80=A4=
=E3=81=AB=E3=83=9E=E3=83=83=E3=83=94=E3=83=B3=E3=82=B0=E3=81=99=E3=82=8B=E8=
=BE=9E=E6=9B=B8=E3=81=A7=E3=80=81<br>
=C2=A0=E3=82=A8=E3=83=B3=E3=83=88=E3=83=AA=E3=81=8C=E5=80=A4=E3=81=AB=E3=82=
=88=E3=81=A3=E3=81=A6=E3=82=BD=E3=83=BC=E3=83=88=E3=81=95=E3=82=8C=E3=81=A6=
=E3=81=84=E3=82=8B=E3=82=82=E3=81=AE=E3=81=A7=E3=81=99<br>
@@ -11472,7 +11472,7 @@ displays lines matching @code{#/regexp/} with line =
numbers.<br>
=C2=A0@c COMMON<br>
<br>
=C2=A0@example<br>
-(file-filer-fold<br>
+(file-filter-fold<br>
=C2=A0 =C2=A0(^[line nc out]<br>
=C2=A0 =C2=A0 =C2=A0(when (#/regexp/ line) (format out &quot;~3d: ~a\n&quot=
; nc line))<br>
=C2=A0 =C2=A0 =C2=A0(+ nc 1))<br>
diff --git a/ext/digest/data/<a href=3D"http://vector006.info" rel=3D"noref=
errer" target=3D"_blank">vector006.info</a> b/ext/digest/data/<a href=3D"ht=
tp://vector006.info" rel=3D"noreferrer" target=3D"_blank">vector006.info</a=
><br>
index 4a5fce5e1..0c86392da 100644<br>
--- a/ext/digest/data/<a href=3D"http://vector006.info" rel=3D"noreferrer" =
target=3D"_blank">vector006.info</a><br>
+++ b/ext/digest/data/<a href=3D"http://vector006.info" rel=3D"noreferrer" =
target=3D"_blank">vector006.info</a><br>
@@ -1,7 +1,7 @@<br>
=C2=A0DESCRIPTION:<br>
-=C2=A0 =C2=A0 The output samples for thi test vector come exclusively from=
 my<br>
+=C2=A0 =C2=A0 The output samples for this test vector come exclusively fro=
m my<br>
=C2=A0 =C2=A0 =C2=A0own implementation and so may be completely incorrect.=
=C2=A0 Use with<br>
-=C2=A0 =C2=A0 a very large grain of salt.=C2=A0 The input sample exactly t=
he same<br>
+=C2=A0 =C2=A0 a very large grain of salt.=C2=A0 The input sample has exact=
ly the same<br>
=C2=A0 =C2=A0 =C2=A0length as the SHA-256 block length.<br>
<br>
=C2=A0 =C2=A0 =C2=A0(Total length of test vector data: 64)<br>
diff --git a/ext/digest/data/<a href=3D"http://vector007.info" rel=3D"noref=
errer" target=3D"_blank">vector007.info</a> b/ext/digest/data/<a href=3D"ht=
tp://vector007.info" rel=3D"noreferrer" target=3D"_blank">vector007.info</a=
><br>
index 7343e73b2..6d89f5f58 100644<br>
--- a/ext/digest/data/<a href=3D"http://vector007.info" rel=3D"noreferrer" =
target=3D"_blank">vector007.info</a><br>
+++ b/ext/digest/data/<a href=3D"http://vector007.info" rel=3D"noreferrer" =
target=3D"_blank">vector007.info</a><br>
@@ -1,7 +1,7 @@<br>
=C2=A0DESCRIPTION:<br>
-=C2=A0 =C2=A0 The output samples for thi test vector come exclusively from=
 my<br>
+=C2=A0 =C2=A0 The output samples for this test vector come exclusively fro=
m my<br>
=C2=A0 =C2=A0 =C2=A0own implementation and so may be completely incorrect.=
=C2=A0 Use with<br>
-=C2=A0 =C2=A0 a very large grain of salt.=C2=A0 The input sample one byte =
shorter<br>
+=C2=A0 =C2=A0 a very large grain of salt.=C2=A0 The input sample is one by=
te shorter<br>
=C2=A0 =C2=A0 =C2=A0than the SHA-256 block length.<br>
<br>
=C2=A0 =C2=A0 =C2=A0(Total length of test vector data: 63)<br>
diff --git a/ext/digest/data/<a href=3D"http://vector008.info" rel=3D"noref=
errer" target=3D"_blank">vector008.info</a> b/ext/digest/data/<a href=3D"ht=
tp://vector008.info" rel=3D"noreferrer" target=3D"_blank">vector008.info</a=
><br>
index e3166b7dc..875ceadca 100644<br>
--- a/ext/digest/data/<a href=3D"http://vector008.info" rel=3D"noreferrer" =
target=3D"_blank">vector008.info</a><br>
+++ b/ext/digest/data/<a href=3D"http://vector008.info" rel=3D"noreferrer" =
target=3D"_blank">vector008.info</a><br>
@@ -1,5 +1,5 @@<br>
=C2=A0DESCRIPTION:<br>
-=C2=A0 =C2=A0 The output samples for thi test vector come exclusively from=
 my<br>
+=C2=A0 =C2=A0 The output samples for this test vector come exclusively fro=
m my<br>
=C2=A0 =C2=A0 =C2=A0own implementation and so may be completely incorrect.=
=C2=A0 Use with<br>
=C2=A0 =C2=A0 =C2=A0a very large grain of salt.=C2=A0 The input sample exac=
tly the same<br>
=C2=A0 =C2=A0 =C2=A0length as the SHA-384 and SHA-512 block lengths.<br>
diff --git a/ext/digest/data/<a href=3D"http://vector009.info" rel=3D"noref=
errer" target=3D"_blank">vector009.info</a> b/ext/digest/data/<a href=3D"ht=
tp://vector009.info" rel=3D"noreferrer" target=3D"_blank">vector009.info</a=
><br>
index 1b2653b92..4d1e88c9a 100644<br>
--- a/ext/digest/data/<a href=3D"http://vector009.info" rel=3D"noreferrer" =
target=3D"_blank">vector009.info</a><br>
+++ b/ext/digest/data/<a href=3D"http://vector009.info" rel=3D"noreferrer" =
target=3D"_blank">vector009.info</a><br>
@@ -1,5 +1,5 @@<br>
=C2=A0DESCRIPTION:<br>
-=C2=A0 =C2=A0 The output samples for thi test vector come exclusively from=
 my<br>
+=C2=A0 =C2=A0 The output samples for this test vector come exclusively fro=
m my<br>
=C2=A0 =C2=A0 =C2=A0own implementation and so may be completely incorrect.=
=C2=A0 Use with<br>
=C2=A0 =C2=A0 =C2=A0a very large grain of salt.=C2=A0 The input sample is o=
ne byte shorter<br>
=C2=A0 =C2=A0 =C2=A0in length than the SHA-384 and SHA-512 block lengths.<b=
r>
diff --git a/ext/digest/data/<a href=3D"http://vector010.info" rel=3D"noref=
errer" target=3D"_blank">vector010.info</a> b/ext/digest/data/<a href=3D"ht=
tp://vector010.info" rel=3D"noreferrer" target=3D"_blank">vector010.info</a=
><br>
index 55b972d29..56ab6e97b 100644<br>
--- a/ext/digest/data/<a href=3D"http://vector010.info" rel=3D"noreferrer" =
target=3D"_blank">vector010.info</a><br>
+++ b/ext/digest/data/<a href=3D"http://vector010.info" rel=3D"noreferrer" =
target=3D"_blank">vector010.info</a><br>
@@ -1,5 +1,5 @@<br>
=C2=A0DESCRIPTION:<br>
-=C2=A0 =C2=A0 The output samples for thi test vector come exclusively from=
 my<br>
+=C2=A0 =C2=A0 The output samples for this test vector come exclusively fro=
m my<br>
=C2=A0 =C2=A0 =C2=A0own implementation and so may be completely incorrect.=
=C2=A0 Use with<br>
=C2=A0 =C2=A0 =C2=A0a very large grain of salt.=C2=A0 The input sample is e=
xactly 5 times<br>
=C2=A0 =C2=A0 =C2=A0size of the SHA-256 block length.<br>
diff --git a/ext/digest/data/<a href=3D"http://vector011.info" rel=3D"noref=
errer" target=3D"_blank">vector011.info</a> b/ext/digest/data/<a href=3D"ht=
tp://vector011.info" rel=3D"noreferrer" target=3D"_blank">vector011.info</a=
><br>
index b37a2c228..c976966a1 100644<br>
--- a/ext/digest/data/<a href=3D"http://vector011.info" rel=3D"noreferrer" =
target=3D"_blank">vector011.info</a><br>
+++ b/ext/digest/data/<a href=3D"http://vector011.info" rel=3D"noreferrer" =
target=3D"_blank">vector011.info</a><br>
@@ -1,5 +1,5 @@<br>
=C2=A0DESCRIPTION:<br>
-=C2=A0 =C2=A0 The output samples for thi test vector come exclusively from=
 my<br>
+=C2=A0 =C2=A0 The output samples for this test vector come exclusively fro=
m my<br>
=C2=A0 =C2=A0 =C2=A0own implementation and so may be completely incorrect.=
=C2=A0 Use with<br>
=C2=A0 =C2=A0 =C2=A0a very large grain of salt.=C2=A0 The input sample is o=
ne byte less<br>
=C2=A0 =C2=A0 =C2=A0than 7 times the size of the SHA-256 block length.<br>
diff --git a/ext/digest/data/<a href=3D"http://vector012.info" rel=3D"noref=
errer" target=3D"_blank">vector012.info</a> b/ext/digest/data/<a href=3D"ht=
tp://vector012.info" rel=3D"noreferrer" target=3D"_blank">vector012.info</a=
><br>
index bbc5aba4f..fbb696176 100644<br>
--- a/ext/digest/data/<a href=3D"http://vector012.info" rel=3D"noreferrer" =
target=3D"_blank">vector012.info</a><br>
+++ b/ext/digest/data/<a href=3D"http://vector012.info" rel=3D"noreferrer" =
target=3D"_blank">vector012.info</a><br>
@@ -1,5 +1,5 @@<br>
=C2=A0DESCRIPTION:<br>
-=C2=A0 =C2=A0 The output samples for thi test vector come exclusively from=
 my<br>
+=C2=A0 =C2=A0 The output samples for this test vector come exclusively fro=
m my<br>
=C2=A0 =C2=A0 =C2=A0own implementation and so may be completely incorrect.=
=C2=A0 Use with<br>
=C2=A0 =C2=A0 =C2=A0a very large grain of salt.=C2=A0 The input sample is e=
xactly 5 times<br>
=C2=A0 =C2=A0 =C2=A0size of the SHA-384 and SHA-512 block lengths.<br>
diff --git a/ext/digest/data/<a href=3D"http://vector014.info" rel=3D"noref=
errer" target=3D"_blank">vector014.info</a> b/ext/digest/data/<a href=3D"ht=
tp://vector014.info" rel=3D"noreferrer" target=3D"_blank">vector014.info</a=
><br>
index 976455583..da8499756 100644<br>
--- a/ext/digest/data/<a href=3D"http://vector014.info" rel=3D"noreferrer" =
target=3D"_blank">vector014.info</a><br>
+++ b/ext/digest/data/<a href=3D"http://vector014.info" rel=3D"noreferrer" =
target=3D"_blank">vector014.info</a><br>
@@ -1,7 +1,7 @@<br>
=C2=A0DESCRIPTION:<br>
=C2=A0 =C2=A0 =C2=A0The output samples for this test vector come exclusivel=
y from my<br>
=C2=A0 =C2=A0 =C2=A0own implementation and so may be completely incorrect.=
=C2=A0 Use with<br>
-=C2=A0 =C2=A0 a very large grain of salt.=C2=A0 The input sample 4 KB of m=
isc.<br>
+=C2=A0 =C2=A0 a very large grain of salt.=C2=A0 The input sample is 4 KB o=
f misc.<br>
=C2=A0 =C2=A0 =C2=A0data.<br>
<br>
=C2=A0 =C2=A0 =C2=A0(Total length of test vector data: 16384)<br>
diff --git a/ext/srfi/test-srfi-194.scm b/ext/srfi/test-srfi-194.scm<br>
index df01751a7..e5851e987 100644<br>
--- a/ext/srfi/test-srfi-194.scm<br>
+++ b/ext/srfi/test-srfi-194.scm<br>
@@ -1,4 +1,4 @@<br>
-;; srfi.194 depends on data.random, so test it iere.<br>
+;; srfi.194 depends on data.random, so test it here.<br>
<br>
=C2=A0(use gauche.test)<br>
=C2=A0(test-start &quot;SRFI-194&quot;)<br>
diff --git a/lib/gauche/experimental/README b/lib/gauche/experimental/READM=
E<br>
index e632e2ade..28e953de1 100644<br>
--- a/lib/gauche/experimental/README<br>
+++ b/lib/gauche/experimental/README<br>
@@ -1,10 +1,10 @@<br>
-The contents of this directory is for various experiment.<br>
+The contents of this directory is for various experiments.<br>
=C2=A0For now, they&#39;re mostly syntactic sugars just to make program sho=
rter,<br>
=C2=A0rather than introducing new abstractions.=C2=A0 =C2=A0The merit of su=
ch syntactic<br>
=C2=A0sugars is highly subjective, only to be estimated after substantial u=
se<br>
=C2=A0in production code.=C2=A0 =C2=A0These modules are to try them in the =
real situation.<br>
<br>
-It is highly possible that, after some periodof trial, we decide to drop<b=
r>
+It is highly possible that, after some period of trial, we decide to drop<=
br>
=C2=A0or change some of the stuff here.=C2=A0 Unlike other &#39;unofficial&=
#39; modules which<br>
=C2=A0tend to stick if they are around a few years, the stuff here may be c=
hanged<br>
=C2=A0even after use of several years.=C2=A0 If you want to use these in yo=
ur code,<br>
diff --git a/lib/gauche/interactive.scm b/lib/gauche/interactive.scm<br>
index 7265ce374..535484bbb 100644<br>
--- a/lib/gauche/interactive.scm<br>
+++ b/lib/gauche/interactive.scm<br>
@@ -433,7 +433,7 @@<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 (set! *controls* (apply write-controls-copy *co=
ntrols* kvs)))]))<br>
<br>
=C2=A0;; This shadows gauche#read-eval-print-loop<br>
-;; NB: We ignore reader argument,=C2=A0 The whole point of thsi procedure<=
br>
+;; NB: We ignore reader argument,=C2=A0 The whole point of this procedure<=
br>
=C2=A0;; is to provide an editable reader, so the user doesn&#39;t need to =
customize it.<br>
=C2=A0(define (read-eval-print-loop :optional (reader #f)<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(e=
valuator #f)<br>
diff --git a/lib/srfi/226.scm b/lib/srfi/226.scm<br>
index 486dd46cb..998c3f9cb 100644<br>
--- a/lib/srfi/226.scm<br>
+++ b/lib/srfi/226.scm<br>
@@ -1,5 +1,5 @@<br>
=C2=A0;;<br>
-;; Compsite library of entire SRFI-226<br>
+;; Composite library of entire SRFI-226<br>
=C2=A0;;<br>
<br>
=C2=A0(define-module srfi.226<br>
diff --git a/lib/srfi/5.scm b/lib/srfi/5.scm<br>
index 1dbc90f45..907c60f0d 100644<br>
--- a/lib/srfi/5.scm<br>
+++ b/lib/srfi/5.scm<br>
@@ -24,7 +24,7 @@<br>
=C2=A0 =C2=A0 =C2=A0((let (name binding ...) body ...)<br>
=C2=A0 =C2=A0 =C2=A0 (%let-loop name (binding ...) () () (body ...)))<br>
<br>
-=C2=A0 =C2=A0 ;; standrad named let (which may have rest parameter)<br>
+=C2=A0 =C2=A0 ;; standard named let (which may have rest parameter)<br>
=C2=A0 =C2=A0 =C2=A0((let name bindings body ...)<br>
=C2=A0 =C2=A0 =C2=A0 (%let-loop name bindings () () (body ...)))<br>
<br>
diff --git a/src/hash.c b/src/hash.c<br>
index c1480903a..0b0bcadd9 100644<br>
--- a/src/hash.c<br>
+++ b/src/hash.c<br>
@@ -1078,8 +1078,8 @@ ScmObj Scm_HashTableStat(ScmHashTable *table)<br>
=C2=A0 * Printer<br>
=C2=A0 */<br>
<br>
-/* Note: When pprint is used, hash table priting is directly handled by pp=
rint<br>
-=C2=A0 =C2=A0and this is never called. */<br>
+/* Note: When pprint is used, hash table printing is directly handled<br>
+=C2=A0 =C2=A0by pprint and this is never called. */<br>
=C2=A0static void hash_print(ScmObj obj, ScmPort *port,<br>
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 ScmWriteContext *ctx SCM_UNUSED)<br>
=C2=A0{<br>
diff --git a/src/thread.c b/src/thread.c<br>
index 55cc9db68..e26a22f5e 100644<br>
--- a/src/thread.c<br>
+++ b/src/thread.c<br>
@@ -390,7 +390,7 @@ ScmObj Scm_ThreadSleep(ScmObj timeout)<br>
=C2=A0 =C2=A0 safe---the thread may leave memory in inconsistent state.<br>
<br>
=C2=A0 =C2=A0 In any way, the target thread is marked as SCM_VM_TERMINATED.=
=C2=A0 If we<br>
-=C2=A0 =C2=A0avoid the forcible termiantion, the thread remains in the sys=
tem, but<br>
+=C2=A0 =C2=A0avoid the forcible termination, the thread remains in the sys=
tem, but<br>
=C2=A0 =C2=A0 as soon as it unblocks and resumes execution of Gauche code, =
it will<br>
=C2=A0 =C2=A0 see the terminate request and terminate itself.<br>
=C2=A0*/<br>
<br>
<br>
_______________________________________________<br>
Gauche-devel mailing list<br>
<a href=3D"mailto:[email protected]" target=3D"_blank">Gau=
[email protected]</a><br>
<a href=3D"https://lists.sourceforge.net/lists/listinfo/gauche-devel" rel=
=3D"noreferrer" target=3D"_blank">https://lists.sourceforge.net/lists/listi=
nfo/gauche-devel</a><br>
</blockquote></div>

--0000000000003529ca06296facd8--


--===============6943763975340351129==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline


--===============6943763975340351129==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
Gauche-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gauche-devel

--===============6943763975340351129==--