diff --git a/docs/rules/no-unsafe-spy.md b/docs/rules/no-unsafe-spy.md index 6e16599..f94134c 100644 --- a/docs/rules/no-unsafe-spy.md +++ b/docs/rules/no-unsafe-spy.md @@ -5,7 +5,7 @@ Spies created in global scope or directly in define blocks don't get automatically reset/cleaned by the jasmine teardown process, making it possible to get false positives when using ```toHaveBeenCalled()``` / ```toHaveBeenCalledWith()```. -This rule checks for the following methods: `spyOn`, `jasmine.createSpy()`, `jasmine.createSpyObj()` +This rule checks for the following methods: `spyOn`, `jasmine.createSpy()`, `jasmine.createSpyObj()`. ## Rule details