summaryrefslogtreecommitdiffstats
path: root/scripts/MarkdownBook/Section.pm
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-08-12 09:29:45 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-08-12 09:29:45 (EDT)
commitf8ad857f3386264e752ef586959b65a7219538b1 (patch)
treec9ef9f22cef567faa5625edb9bd737a4064a9006 /scripts/MarkdownBook/Section.pm
parent787758b938b5f0f1cd657b6eef43b0ca8ba6df2c (diff)
Comment and clean up code.
Diffstat (limited to 'scripts/MarkdownBook/Section.pm')
-rw-r--r--scripts/MarkdownBook/Section.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/MarkdownBook/Section.pm b/scripts/MarkdownBook/Section.pm
index 39b29eb..82ff897 100644
--- a/scripts/MarkdownBook/Section.pm
+++ b/scripts/MarkdownBook/Section.pm
@@ -45,21 +45,21 @@ sub level
sub number
{
- my ($self, $number) = @_;
+ my ($self) = @_;
return $self->{'number'};
}
sub id
{
- my ($self, $id) = @_;
+ my ($self) = @_;
return $self->{'id'};
}
sub title
{
- my ($self, $title) = @_;
+ my ($self) = @_;
return $self->{'title'};
}