Re: [libxml-devel] minor typo in README file example

2006-08-15 Thread Ross Bamford
Hi, On Thu, 15 Jun 2006 19:54:28 +0100, Aitor Garay-Romero <[EMAIL PROTECTED]> wrote: >In the README file the "reading xml" example is not correct. > Somewhere > it says: > >puts "Node path: #{node.path} \t Contents: #{node}" > >But it should say: > >puts "Node path: #{node.p

[libxml-devel] minor typo in README file example

2006-06-15 Thread Aitor Garay-Romero
Hi there!,   In the README file the "reading xml" example is not correct.  Somewhere it says:   puts "Node path: #{node.path} \t Contents: #{node}"   But it should say:   puts "Node path: #{ node.path} \t Contents: #{node.contents}"     If not the output will not be the one shown on the page.   /AI