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:
parent
3a42661b47
commit
492412f177
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue