commit 02877714b77962cc72ea78489b89bdb4c0d468ff
parent c47984d9fa917274ce4de87e72d35146ac4939d2
Author: Chandan Rai <chandanr@exzeoindia.com>
Date: Fri, 10 Feb 2017 21:03:11 +0530
Fix typos in react-intl integration docs (#1128)
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/recipes/how-to-integrate-react-intl.md b/docs/recipes/how-to-integrate-react-intl.md
@@ -109,11 +109,11 @@ export default injectIntl(Example);
When running the development server, every source file is watched and parsed for changed messages.
Messages files are updated on the fly.
-If a new definition is found, this definition is added to the end of every used `src/messages/xx-XX.json` file so when commiting, new translations will be at the tail of file.
+If a new definition is found, this definition is added to the end of every used `src/messages/xx-XX.json` file so when committing, new translations will be at the tail of file.
When an untranslated message is removed and its `message` field is empty as well, the message will be deleted from all translation files. This is why the `files` array is present.
-When editiong a translation file, it should be copied to `build/messages/` directory.
+When editing a translation file, it should be copied to `build/messages/` directory.
### Other References