Skip to content
Snippets Groups Projects
Commit ca728354 authored by Graham McVicker's avatar Graham McVicker
Browse files

bug fix: get_all_synonyms could return undef instead of empty list

parent 2ab3aeb1
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ sub new_fast {
my $class = shift;
my $hashref = shift;
bless $hashref, $class;
$hashref->{_synonyms} = [];
$hashref->{synonyms} = [];
return $hashref;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment