From 2a6cc2af440770c039dd35acdaeea31315a748b0 Mon Sep 17 00:00:00 2001 From: Matthew <5505611+mdotwills@users.noreply.github.com> Date: Fri, 13 Oct 2023 12:06:38 +1100 Subject: [PATCH] More inclusive wording of comment --- src/intl-props.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intl-props.js b/src/intl-props.js index 0b58caa..b285c9d 100644 --- a/src/intl-props.js +++ b/src/intl-props.js @@ -60,7 +60,7 @@ export const getIntlProps = async (locale) => { } else { messages = await localeLoader(locale); - // Hint the user if he forgot to return messages. + // Hint to the user if they forgot to return messages. if (process.env.NODE_ENV !== 'production' && !messages) { throw new Error('Expecting loadLocale() to return a messages object'); }