Fix to spelling in error message

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

Differential Revision: D4234240

fbshipit-source-id: 8664f9950d4ab78a87f1d23c84073e74b21a5126
This commit is contained in:
penx 2016-11-26 14:56:10 -08:00 committed by Facebook Github Bot
parent 158da01d26
commit 59f870b0f6
1 changed files with 2 additions and 2 deletions

View File

@ -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`,
);
}