html5/spec Overview.html,1.5482,1.5483

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv17983

Modified Files:
	Overview.html 
Log Message:
Fix the e-mail regexp to disallow commas. (Typo in the example. Oops. I hope you didn't copy the regexp from Mike's tweet!) (whatwg r6885)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5482
retrieving revision 1.5483
diff -u -d -r1.5482 -r1.5483
--- Overview.html	10 Jan 2012 00:56:21 -0000	1.5482
+++ Overview.html	10 Jan 2012 18:47:53 -0000	1.5483
@@ -35182,7 +35182,7 @@
    <p>The following JavaScript- and Perl-compatible regular expression
    is an implementation of the above definition.</p>
 
-   <pre>/^[a-zA-Z0-9.!#$%&amp;'*+-/=?\^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/</pre>
+   <pre>/^[a-zA-Z0-9.!#$%&amp;'*+/=?\^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/</pre>
 
    
 

Received on Tuesday, 10 January 2012 18:50:00 UTC