[svn:perlfaq] r11635 - perlfaq/trunk

[email protected] Wed, 6 Aug 2008 16:56:58 -0700 (PDT)
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
Author: comdog
Date: Wed Aug  6 16:56:58 2008
New Revision: 11635

Modified:
   perlfaq/trunk/perlfaq6.pod

Log:
* perlfaq6: How do I match XML, HTML, or other nasty, ugly things with a regex?
	+ fixed quoting problem with <br/>


Modified: perlfaq/trunk/perlfaq6.pod
==============================================================================
--- perlfaq/trunk/perlfaq6.pod	(original)
+++ perlfaq/trunk/perlfaq6.pod	Wed Aug  6 16:56:58 2008
@@ -164,7 +164,7 @@
 
 The problem with things such as XML is that they have balanced text
 containing multiple levels of balanced text, but sometimes it isn't
-balanced text, as in an empty tag (C<<br/>, for instance). Even then,
+balanced text, as in an empty tag (C<< <br/> >>, for instance). Even then,
 things can occur out-of-order. Just when you think you've got a
 pattern that matches your input, someone throws you a curveball.