From 7468a287e560fb1186d8afa767e4a3e1d09ad5bf Mon Sep 17 00:00:00 2001 From: Jaylou Rasonabe <100252318+JlordS32@users.noreply.github.com> Date: Sat, 29 Apr 2023 22:14:15 +1000 Subject: [PATCH] spelling correction --- 15_Third_Party_Packages/15_third_party_packages.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(', ')