Navigation Menu

Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Commit

Permalink
Fix a mixup between male and female last names in Icelandic.
Browse files Browse the repository at this point in the history
Last names for females usually end in "dóttir", meaning "daughter".
Last names for males usually end in "son".
  • Loading branch information
arthur-olafsson committed Jul 19, 2016
1 parent 039eeba commit 0dfc896
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Faker/Provider/is_IS/Person.php
Expand Up @@ -78,7 +78,7 @@ public function lastName()
*/
public function lastNameMale()
{
return $this->lastName().'dóttir';
return $this->lastName().'son';
}

/**
Expand All @@ -88,7 +88,7 @@ public function lastNameMale()
*/
public function lastNameFemale()
{
return $this->lastName().'son';
return $this->lastName().'dóttir';
}

/**
Expand Down

0 comments on commit 0dfc896

Please sign in to comment.