~ chicken-core (chicken-5) d9c2952e4df3addb31c7852fe05121afdb17cafa
commit d9c2952e4df3addb31c7852fe05121afdb17cafa
Author: siiky <github-siiky@net-c.cat>
AuthorDate: Wed Sep 25 19:06:24 2024 +0100
Commit: Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Wed Sep 25 20:37:53 2024 +0200
Fix duplicate "the" errors
Signed-off-by: Mario Domenech Goulart <mario@parenteses.org>
diff --git a/README b/README
index 87778366..fb41d26d 100644
--- a/README
+++ b/README
@@ -517,7 +517,7 @@ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/_/
- Make sure the "XCODE_PATH" setting is correct (see
Makefile.ios), it defaults to "/Applications/Xcode.app".
- - The paths for the the various build tools changed between
+ - The paths for the various build tools changed between
Xcode 4 and 5. The makefile used for iOS builds of CHICKEN
assume Xcode 5 is used. If you are using Xcode 4, override
the XCODE_TOOLPATH and C_COMPILER make-variables providing
diff --git a/csi.scm b/csi.scm
index 7523bbcf..4990cedd 100644
--- a/csi.scm
+++ b/csi.scm
@@ -1096,7 +1096,7 @@ EOF
(keyword-style #:none)
(parentheses-synonyms #f)
(symbol-escape #f) )
- ;; Load the the default modules into the evaluation environment.
+ ;; Load the default modules into the evaluation environment.
;; This is done before setting load-verbose => #t to avoid
;; spurious import messages.
(eval `(import-for-syntax ,@default-syntax-imports))
diff --git a/manual/Module (chicken condition) b/manual/Module (chicken condition)
index d057f427..50090c5c 100644
--- a/manual/Module (chicken condition)
+++ b/manual/Module (chicken condition)
@@ -345,7 +345,7 @@ precedes it. Returns a ''kind-key'' condition that associates the given
<procedure>(make-composite-condition condition ...)</procedure><br>
-Returns a newly-allocated condition whose components correspond to the the
+Returns a newly-allocated condition whose components correspond to the
given ''condition''s. A predicate created by {{condition-predicate}} returns
true for the new condition if and only if it returns true for one or more
of its component conditions.
diff --git a/tests/fft.scm b/tests/fft.scm
index 618fcd07..b98d65cb 100644
--- a/tests/fft.scm
+++ b/tests/fft.scm
@@ -1913,7 +1913,7 @@
;; This is an complex fft, using a decimation-in-frequency algorithm
;; with inputs in bit-reversed order and outputs in natural order.
- ;; The organization of the algorithm has little to do with the the
+ ;; The organization of the algorithm has little to do with the
;; associated algorithm on page 41 of Chu and George,
;; I just reversed the operations of the direct algorithm given
;; above (without dividing by 2 each time, so that this has to
Trap