summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arthur A. Gleckler 2022-12-10 18:33:26 -0800
committerGravatar Arthur A. Gleckler 2022-12-10 18:33:26 -0800
commitea31a5387b48d829830eaf689e2903360ddcbdb8 (patch)
tree50ac92c7ce37a711a6c4ccc474dff53c15ef26c4
parentAdd clarification about not modifying existing SRFIs. (diff)
Account for sorting of non-Western names.
-rw-r--r--srfi-228.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/srfi-228.html b/srfi-228.html
index 41728e8..eed6cd0 100644
--- a/srfi-228.html
+++ b/srfi-228.html
@@ -114,7 +114,7 @@
<h2 id=examples>Examples</h2>
-<p>Personal names are usually sorted lexicographically and case-insensitively by the last name, then the first name if the last names are the same. The following example shows how <code>make-wrapper-comparator</code> and <code>make-product-comparator</code> can be used to create a comparator which orders a record type of personal names in this way.
+<p>Personal names are often sorted lexicographically and case-insensitively by the last name, then the first name if the last names are the same. The following example shows how <code>make-wrapper-comparator</code> and <code>make-product-comparator</code> can be used to create a comparator which orders a record type of personal names in this way.
<pre><code>(define-record-type Person
(make-person first-name last-name)