From 45a88da4a544675ea42dc20011f4091950a1dcb3 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 13 Nov 2018 17:48:07 +0530 Subject: email: Fix typo in parse-email-address docstring. * email/email.scm (parse-email-address): Fix typo in examples in parse-email-address docstring. The returned value must be an association list of pairs, not of lists. --- email/email.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/email/email.scm b/email/email.scm index 53840db..6ad2d93 100644 --- a/email/email.scm +++ b/email/email.scm @@ -631,9 +631,9 @@ are as defined in RFC5322. For example, (parse-email-address \"Foo \") -=> ((name \"Foo\") (address \"foo@example.org\")) +=> ((name . \"Foo\") (address . \"foo@example.org\")) (parse-email-address \"foo@example.org\") -=> ((address \"foo@example.org\"))" +=> ((address . \"foo@example.org\"))" (cond ((string-match "([^<]*)<([^>]*)>" address) => (lambda (match-record) -- cgit v1.2.3