minor doc fixes
Matt S Trout [Mon, 13 Aug 2012 20:31:51 +0000 (20:31 +0000)]
lib/HTML/String.pm
lib/HTML/String/Value.pm

index 58aa736..c040fe1 100644 (file)
@@ -30,7 +30,7 @@ HTML::String - mark strings as HTML to get auto-escaping
   
   my $html = html('<h1>').$not_html.html('</h1>');
   
-  print html($html); # <h1>Hello, Bob &quot; Jake</h1>
+  print html($html); # <h1>Hello, Bob &amp; Jake</h1>
 
 or, alternatively,
 
@@ -43,7 +43,7 @@ or, alternatively,
     "<h1>${not_html}</h1>";
   }
   
-  print html($html); # <h1>Hello, Bob &quot; Jake</h1>
+  print html($html); # <h1>Hello, Bob &amp; Jake</h1>
 
 (but see the L<HTML::String::Overload> documentation for details and caveats).
 
index 1e75271..6380081 100644 (file)
@@ -153,7 +153,7 @@ Each entry in @parts consists of one of:
 
   [ 'some text that will not be escaped', 0 ]
 
-  [ 'text that you DO want to be scaped', 1 ]
+  [ 'text that you DO want to be escaped', 1 ]
 
   $existing_html_string_value