Skip to content

Commit

Permalink
objects part, typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Asabeneh committed Jul 22, 2020
1 parent 0759060 commit 8d0e1b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 08_Day_Objects/08_day_objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ const person = {
city: 'Helsinki'
},
getPersonInfo: function() {
return `I am ${this.firstName} and I live in ${city}, ${this.country}. I am ${this.age}.`
return `I am ${this.firstName} and I live in ${this.city}, ${this.country}. I am ${this.age}.`
}
}

Expand Down

0 comments on commit 8d0e1b0

Please sign in to comment.