Fix typo in console.error

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

Reviewed By: svcscm

Differential Revision: D2652595

Pulled By: cpojer

fb-gh-sync-id: a46a19dcbb119b4e14df2e4418787ea232c32606
This commit is contained in:
Giampaolo Bellavite 2015-11-13 11:00:05 -08:00 committed by facebook-github-bot-5
parent 3a42661b47
commit 492412f177
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class DependencyGraph {
this._helpers = new Helpers(this._opts);
this.load().catch((err) => {
// This only happens at initialization. Live errors are easier to recover from.
console.error('Error building DepdendencyGraph:\n', err.stack);
console.error('Error building DependencyGraph:\n', err.stack);
process.exit(1);
});
}