diff options
Diffstat (limited to 'scripts/MarkdownBook/Section.pm')
-rw-r--r-- | scripts/MarkdownBook/Section.pm | 6 |
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'}; } |