From 59f870b0f63e53497602e5d01ef63bcb456f0860 Mon Sep 17 00:00:00 2001 From: penx Date: Sat, 26 Nov 2016 14:56:10 -0800 Subject: [PATCH] Fix to spelling in error message Summary: Closes https://github.com/facebook/react-native/pull/11149 Differential Revision: D4234240 fbshipit-source-id: 8664f9950d4ab78a87f1d23c84073e74b21a5126 --- .../src/node-haste/DependencyGraph/ResolutionRequest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react-packager/src/node-haste/DependencyGraph/ResolutionRequest.js b/react-packager/src/node-haste/DependencyGraph/ResolutionRequest.js index 07d24a21..73b0f0aa 100644 --- a/react-packager/src/node-haste/DependencyGraph/ResolutionRequest.js +++ b/react-packager/src/node-haste/DependencyGraph/ResolutionRequest.js @@ -445,7 +445,7 @@ class ResolutionRequest { throw new UnableToResolveError( fromModule, toModule, - `File ${potentialModulePath} doesnt exist`, + `File ${potentialModulePath} doesn't exist`, ); } @@ -459,7 +459,7 @@ class ResolutionRequest { throw new UnableToResolveError( fromModule, toModule, - `Directory ${potentialDirPath} doesnt exist`, + `Directory ${potentialDirPath} doesn't exist`, ); }