From 47e8d81f242586bb6e0e249b4cd52fdc9aad0778 Mon Sep 17 00:00:00 2001 From: Adam Szaraniec Date: Fri, 2 Sep 2016 08:50:04 +0200 Subject: [PATCH] Fix typo --- docs/ManualMocks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ManualMocks.md b/docs/ManualMocks.md index 9417e3095fd1..4a7a62aa6ec0 100644 --- a/docs/ManualMocks.md +++ b/docs/ManualMocks.md @@ -24,7 +24,7 @@ a node module, the mock should be placed in the same parent directory as the config ``` -When a manual mock exists for a given module, Jest's module system will use that module when explicitly calling `jest.mock('moduleNmae')`. +When a manual mock exists for a given module, Jest's module system will use that module when explicitly calling `jest.mock('moduleName')`. Here's a contrived example where we have a module that provides a summary of all the files in a given directory.