diff --git a/15_Third_Party_Packages/15_third_party_packages.md b/15_Third_Party_Packages/15_third_party_packages.md index 991f5fb..3a453cf 100644 --- a/15_Third_Party_Packages/15_third_party_packages.md +++ b/15_Third_Party_Packages/15_third_party_packages.md @@ -240,10 +240,10 @@ class App extends Component { }) } - renderCountries = () => { + renderCountries = () => { return this.state.data.map((country) => { const languageOrLanguages = - country.languages.length > 1 ? 'Langauges' : 'Language' + country.languages.length > 1 ? 'Languages' : 'Language' const formatLanguages = country.languages .map(({ name }) => name) .join(', ')