suggested a regexp that allows hyphens in people's real names, and fixed a typo

svn: r17411
This commit is contained in:
Robby Findler 2009-12-28 16:41:58 +00:00
parent a5c89f6e0f
commit 19bcc4da54

View File

@ -134,8 +134,8 @@ This directory contains the following files and sub-directories:
keeping, for example: keeping, for example:
@verbatim[#:indent 2]|{ @verbatim[#:indent 2]|{
(("Full Name" (("Full Name"
#rx"^[A-Z][a-zA-Z]+(?: [A-Z][a-zA-Z]+)+$" #rx"^[A-Z][a-zA-Z-]+(?: [A-Z][a-zA-Z-]+)+$"
"full name, no punctuations, properly capitalized") "full name, no punctuation, properly capitalized")
("Utah ID Number" ("Utah ID Number"
#rx"^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]$" #rx"^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]$"
"Utah ID Number with exactly nine digits") "Utah ID Number with exactly nine digits")