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

Fix a mixup between male and female last names in Icelandic. #970

Merged
merged 1 commit into from
Jul 25, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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