Skip to content

Commit

Permalink
documentation fix, root is a getter/setter so show usage properly for it
Browse files Browse the repository at this point in the history
  • Loading branch information
hyphaltip committed Apr 16, 2012
1 parent 7c9c278 commit 39deae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bio/Tree/Tree.pm
Expand Up @@ -247,7 +247,7 @@ sub nodelete{
=head2 root
Title : root
Usage : $tree->root->find('a');
Usage : $tree->root($root) OR my $root = $tree->root;
Function: Get / set the root node of the tree. Note that setting a
new root node does not perform a whole re-root operation,
it merely changes the pointer to the root node of the tree.
Expand Down

2 comments on commit 39deae8

@gjuggler
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good change. :)

This reminds me -- what is the current status of this branch? Are there any changes or additions needed before bringing it into the main branch? I seem to remember a few methods which lacked a bit of explanation or documentation, but it's been awhile so I'm not so sure anymore.

@cjfields
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure. If anything it needs to be brought up to current master, but that shouldn't be hard to do.

Please sign in to comment.