Skip to content

Commit 1a67cba

Browse files
fix duplicate words
Original commit: 38ade95
1 parent 7e7b11b commit 1a67cba

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

csug/compat.stex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Section~\ref{SECTCOMPATEXTENDSYNTAX}
2323
describes \scheme{extend-syntax} macros.
2424
These features are supported directly by current versions of {\ChezScheme},
2525
but support may be dropped in future versions.
26-
New programs should use the standard mechanisms described in
26+
New programs should use the standard mechanisms described
2727
in \emph{The Scheme Programming Language, 4th Edition}~\cite{Dybvig:tspl4}
2828
instead.
2929

csug/control.stex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ The first form is identical to the Revised$^6$ Report \scheme{dynamic-wind}.
287287
When the optional \var{critical?} argument is present and non-false,
288288
the \var{in} thunk is invoked in a critical section along with the code
289289
that records that the body has been entered, and the \var{out} thunk is
290-
invoked in a critical section section along with the code that records
290+
invoked in a critical section along with the code that records
291291
that the body has been exited.
292292
Extreme caution must be taken with this form of \scheme{dynamic-wind},
293293
since an error or long-running computation can leave interrupts

csug/csug.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ @article{Waddell:fixing-letrec
444444
author = {Oscar Waddell and Dipanwita Sarkar and R. Kent Dybvig},
445445
title = {Fixing Letrec: A Faithful Yet Efficient Implementation of {Scheme}'s
446446
Recursive Binding Construct},
447-
journal = {Higher-order and and symbolic computation},
447+
journal = {Higher-order and symbolic computation},
448448
volume = 18,
449449
number = "3/4",
450450
pages = {299--326},

csug/expeditor.stex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Its default value is \scheme{100}.
120120
\endentryheader
121121

122122
The value of \scheme{ee-default-repeat} is a nonnegative fixnum
123-
value that determines the number of of times the next command is
123+
value that determines the number of times the next command is
124124
repeated after the \scheme{ee-command-repeat} editing command
125125
(bound to \scheme{Esc-^U} by default) is used and \emph{not}
126126
followed by a sequence of digits.

csug/foreign.stex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3485,7 +3485,7 @@ A thread created via the Scheme procedure \scheme{fork-thread} starts
34853485
in the active state and need not be activated.
34863486
Any thread that has been deactivated, and any
34873487
thread created by some mechanism other than \scheme{fork-thread} must,
3488-
however, be activated before before it can access Scheme data or execute
3488+
however, be activated before it can access Scheme data or execute
34893489
Scheme code. A foreign callable that is declared with \scheme{__collect_safe}
34903490
can activate a calling thread.
34913491
Otherwise, \scheme{Sactivate_thread} must be used to activate a thread.

csug/intro.stex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,15 @@ valid identifiers in {\ChezScheme}.
131131
Second, the single-character sequences \scheme{\schlbrace} and
132132
\scheme{\schrbrace} are identifiers.
133133
Third, identifiers containing arbitrary characters may be printed by
134-
escaping them them with \scheme{\} or with \scheme{|}.
134+
escaping them with \scheme{\} or with \scheme{|}.
135135
\scheme{\} is used to escape a single character (except 'x', since
136136
\scheme{\x} marks the start of a hex scalar value),
137137
whereas \scheme{|} is used
138138
to escape the group of characters that follow it up through the
139139
matching \scheme{|}.
140140
For example, \scheme{\||\|} is an identifier with a two-character
141141
name consisting of the character \scheme{|} followed by the
142-
the character \scheme{\}, and \scheme{|hit me!|} is an identifier whose name
142+
character \scheme{\}, and \scheme{|hit me!|} is an identifier whose name
143143
contains a space.
144144

145145
In addition, gensyms (page~\ref{desc:gensym}) are printed with

csug/io.stex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ message.
670670
\endentryheader
671671

672672
\noindent
673-
When When \var{obj} is \scheme{#f}, the port's beginning-of-line (BOL)
673+
When \var{obj} is \scheme{#f}, the port's beginning-of-line (BOL)
674674
flag is cleared; otherwise, the port's BOL flag is set.
675675

676676
The BOL flag is consulted by \scheme{fresh-line}
@@ -2555,7 +2555,7 @@ objects \scheme{\var{obj} \dots}.
25552555
Characters are copied from \var{format-string} to the output string from
25562556
left to right, until \var{format-string} is exhausted.
25572557
The format string may contain one or more \var{format directives}, which are
2558-
multi-character sequences prefixed by a a tilde (~\scheme{~}~).
2558+
multi-character sequences prefixed by a tilde (~\scheme{~}~).
25592559
Each directive is replaced by some other text, often involving one or more
25602560
of the \scheme{\var{obj} \dots} arguments, as determined by the semantics
25612561
of the directive.

csug/objects.stex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1317,7 +1317,7 @@ be parsed as a number.
13171317

13181318
\item
13191319
A symbol whose name contains arbitrary characters may be written by
1320-
escaping them them with \scheme{\} or with \scheme{|}.
1320+
escaping them with \scheme{\} or with \scheme{|}.
13211321
\scheme{\} is used to escape a single character (except 'x', since
13221322
\scheme{\x} marks the start of a hex scalar value),
13231323
whereas \scheme{|} is used

csug/system.stex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4362,7 +4362,7 @@ in bytes, including not only the bytes occupied for Scheme objects
43624362
but also various forms of overhead, including fragmentation and
43634363
reserved but not currently occupied memory, and is thus an accurate
43644364
measure of the amount of heap memory currently reserved from the
4365-
the operating system for the current process.
4365+
operating system for the current process.
43664366

43674367
%----------------------------------------------------------------------------
43684368
\entryheader

csug/use.stex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1655,7 +1655,7 @@ The application installation script should install {\PetiteChezScheme}
16551655
if not already installed on the target system.
16561656
It should install the application boot file in the same directory as
16571657
the {\PetiteChezScheme} boot file petite.boot is installed,
1658-
and it should should install the application shared libraries, if any,
1658+
and it should install the application shared libraries, if any,
16591659
either in the same location or in a standard location for shared libraries
16601660
on the target system.
16611661
It should also create a link to or copy of the {\PetiteChezScheme}

0 commit comments

Comments
 (0)