Subject: | minor doc bug in PPI::Token::Symbol |
I believe that the ineritance tree described in PPI::Token::Symbol has a typo.
Around line 11, it says that:
PPI::Token::Word
isa PPI::Token
isa PPI::Element
I believe it should be
PPI::Token::Symbol
isa PPI::Token
isa PPI::Element
World's smallest patch against svn attached.
Please let me know the best way to report these trivial problems. I may run
across more since I seem to read docs repeatedly a lot.
Thanks!
-Andy
Subject: | Symbol.pm.docpatch |
Index: lib/PPI/Token/Symbol.pm
===================================================================
--- lib/PPI/Token/Symbol.pm (revision 795)
+++ lib/PPI/Token/Symbol.pm (working copy)
@@ -8,7 +8,7 @@
=head1 INHERITANCE
- PPI::Token::Word
+ PPI::Token::Symbol
isa PPI::Token
isa PPI::Element