diff --git a/ChangeLog b/ChangeLog index 8aa254d7d8..3045cb6525 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Jul 23 08:11:32 2013 Zachary Scott + + * lib/rexml/streamlistener.rb: [DOC] Fix examples in + REXML::StreamListener#entitydecl patch by Ippei Obayashi [Bug #8665] + Tue Jul 23 07:44:59 2013 Eric Hodel * lib/rubygems: Import RubyGems from master as of commit b165260 diff --git a/lib/rexml/streamlistener.rb b/lib/rexml/streamlistener.rb index 619c529578..8805ffba4d 100644 --- a/lib/rexml/streamlistener.rb +++ b/lib/rexml/streamlistener.rb @@ -57,17 +57,17 @@ module REXML # declaration. It can be in a number of formats, but in general it # returns (example, result): # - # ["%", "YN", "'\"Yes\"'", "\""] + # ["YN", "\"Yes\"", "%"] # - # ["%", "YN", "'Yes'", "s"] + # ["YN", "Yes", "%"] # - # ["WhatHeSaid", "\"He said %YN;\"", "YN"] + # ["WhatHeSaid", "He said %YN;"] # - # ["open-hatch", "SYSTEM", "\"http://www.textuality.com/boilerplate/OpenHatch.xml\""] + # ["open-hatch", "SYSTEM", "http://www.textuality.com/boilerplate/OpenHatch.xml"] # - # ["open-hatch", "PUBLIC", "\"-//Textuality//TEXT Standard open-hatch boilerplate//EN\"", "\"http://www.textuality.com/boilerplate/OpenHatch.xml\""] + # ["open-hatch", "PUBLIC", "-//Textuality//TEXT Standard open-hatch boilerplate//EN", "http://www.textuality.com/boilerplate/OpenHatch.xml"] # - # ["hatch-pic", "SYSTEM", "\"../grafix/OpenHatch.gif\"", "\n\t\t\t\t\t\t\tNDATA gif", "gif"] + # ["hatch-pic", "SYSTEM", "../grafix/OpenHatch.gif", "gif"] def entitydecl content end #