From 4e1f36cbb0e5cfbaf938a8d51570105f604500b6 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sat, 12 Jun 2021 10:00:36 +0900 Subject: [PATCH] Fix typo in SpySpec.js ommitted -> omitted --- spec/core/SpySpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/core/SpySpec.js b/spec/core/SpySpec.js index f7a2c9ec..97fc9544 100644 --- a/spec/core/SpySpec.js +++ b/spec/core/SpySpec.js @@ -213,7 +213,7 @@ describe('Spies', function() { ).toBe(1); }); - it('allows base name to be ommitted when assigning methods and properties', function() { + it('allows base name to be omitted when assigning methods and properties', function() { var spyObj = env.createSpyObj({ m: 3 }, { p: 4 }); expect(spyObj.m()).toEqual(3);