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

Commit

Permalink
Merge pull request #970 from arthur-olafsson/master
Browse files Browse the repository at this point in the history
Fix a mixup between male and female last names in Icelandic.
  • Loading branch information
fzaninotto committed Jul 25, 2016
2 parents 525eabe + 0dfc896 commit 5265f16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Faker/Provider/is_IS/Person.php
Original file line number Diff line number Diff line change
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 5265f16

Please sign in to comment.