summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiliana Marie Prikler <liliana.prikler@gmail.com>2022-07-03 17:08:36 +0200
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2022-07-03 17:11:18 +0200
commit672c863f5523cd193397b83c072da7831b0f3273 (patch)
tree2eb063a8fb5142e81276d7989dba84678640782c
parenteb44b1f30430954749d09916fd7885ff3062a417 (diff)
etc: teams: Sort members lexicographically by last name.
* etc/teams.scm.in: Sort members lexicographically by last name.
-rw-r--r--etc/teams.scm.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/teams.scm.in b/etc/teams.scm.in
index 57996a1de07..169d9fc4718 100644
--- a/etc/teams.scm.in
+++ b/etc/teams.scm.in
@@ -179,10 +179,6 @@ and the maven-build-system."))
179 "A group of mentors who chaperone contributions by newcomers.")) 179 "A group of mentors who chaperone contributions by newcomers."))
180 180
181 181
182(define-member (person "Ricardo Wurmus"
183 "rekado@elephly.net")
184 r core mentors)
185
186(define-member (person "Ludovic Courtès" 182(define-member (person "Ludovic Courtès"
187 "ludo@gnu.org") 183 "ludo@gnu.org")
188 core home embedded-bootstrap mentors) 184 core home embedded-bootstrap mentors)
@@ -191,6 +187,10 @@ and the maven-build-system."))
191 "andreas@enge.fr") 187 "andreas@enge.fr")
192 science) 188 science)
193 189
190(define-member (person "Ricardo Wurmus"
191 "rekado@elephly.net")
192 r core mentors)
193
194 194
195(define (find-team name) 195(define (find-team name)
196 (or (hash-ref %teams (string->symbol name)) 196 (or (hash-ref %teams (string->symbol name))