diff options
| author | 2022-12-10 18:33:26 -0800 | |
|---|---|---|
| committer | 2022-12-10 18:33:26 -0800 | |
| commit | ea31a5387b48d829830eaf689e2903360ddcbdb8 (patch) | |
| tree | 50ac92c7ce37a711a6c4ccc474dff53c15ef26c4 | |
| parent | Add clarification about not modifying existing SRFIs. (diff) | |
Account for sorting of non-Western names.
| -rw-r--r-- | srfi-228.html | 2 |
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) |
