Skip to content

Commit

Permalink
rm problematic word for POD perl
Browse files Browse the repository at this point in the history
  • Loading branch information
benbenben2 committed Jan 18, 2025
1 parent 64e3a77 commit a398f7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/ProductOpener/TaxonomiesEnhancer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ sub remove_duplicates {

=head2 find_smallest_value_key ( hashmap )
This function finds the key with the smallest value in a hashmap. If multiple keys have the same smallest value, it returns the lexicographically smallest key.
This function finds the key with the smallest value in a hashmap. If multiple keys have the same smallest value, it returns the first key in alphabetical order.
=head3 Arguments
Expand All @@ -454,7 +454,7 @@ A hash reference where the keys are strings and the values are numeric.
=head3 Return value
Returns the key with the smallest value. If multiple keys have the same smallest value, returns the lexicographically smallest key.
Returns the key with the smallest value. If multiple keys have the same smallest value, returns the first key in alphabetical order.
=cut

Expand Down Expand Up @@ -484,7 +484,7 @@ sub find_smallest_value_key {

=head2 get_sorted_strings ( string1, string2 )
This function returns two strings in lexicographically sorted order.
This function returns two strings in alphabetical order.
=head3 Arguments
Expand Down

0 comments on commit a398f7e

Please sign in to comment.