Fixes typo in error message

Summary:
This pull request fixes a small typo when a module fails being transformed through the React Packager.
Closes https://github.com/facebook/react-native/pull/8596

Differential Revision: D3522272

Pulled By: mkonicek

fbshipit-source-id: e117a26bab5a99573ac68fb0e7618df0a14325a4
This commit is contained in:
Johannes Stein 2016-07-06 08:13:02 -07:00 committed by Facebook Github Bot 0
parent 8f5ebd55da
commit 81961d8756
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class Transformer {
transformFile(fileName, code, options) {
if (!this._transform) {
return Promise.reject(new Error('No transfrom module'));
return Promise.reject(new Error('No transform module'));
}
debug('transforming file', fileName);
return this