Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
gbicann committed Jul 17, 2024
1 parent 5f76d00 commit b8357ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/perl/ICANN/RST/DataProvider/Column.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ sub new {
return bless($ref, $package);
}

sub name { $_->{'Name'} }
sub type { $_->{'Type'} }
sub name { $_[0]->{'Name'} }
sub type { $_[0]->{'Type'} }
sub description { ICANN::RST::Text->new($_[0]->{'Description'}) }

1;
Expand Down

0 comments on commit b8357ab

Please sign in to comment.