Minor typo in Error message

Summary: Closes https://github.com/facebook/react-native/pull/8001

Differential Revision: D3404663

fbshipit-source-id: 0d0af84e4f6d31e6ddf79ef4e263737542b81361
This commit is contained in:
Yann Pringault 2016-06-08 06:11:31 -07:00 committed by Facebook Github Bot 0
parent dee7aadd28
commit a4c9a2d0a6
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class BundleBase {
addModule(module) {
if (!(module instanceof ModuleTransport)) {
throw new Error('Expeceted a ModuleTransport object');
throw new Error('Expected a ModuleTransport object');
}
return this._modules.push(module) - 1;