diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 98844ef..be0d542 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing -Feel free to contribute to this repo. Changes that improve overall performance, code quality, tests, etc. are highly appriciated. +Feel free to contribute to this repo. Changes that improve overall performance, code quality, tests, etc. are highly appreciated. ## Pull Request Process diff --git a/test/hasher.spec.ts b/test/hasher.spec.ts index bf4804e..3164b93 100644 --- a/test/hasher.spec.ts +++ b/test/hasher.spec.ts @@ -70,7 +70,7 @@ describe('Hasher', () => { 'c0705a3e2b55b54d55a6fe675b7dfb48572bd3adf0c54aab621da2b3663a0796' ); - const anotherHAshableArrayWithObjectWithTheSameHash = [ + const anotherHashableArrayWithObjectWithTheSameHash = [ { someValue: 'somevalue', toHashableString: () => 'another_value_to_hash', @@ -81,7 +81,7 @@ describe('Hasher', () => { }, ]; expect(hash.hash(arrayHashable)).toEqual( - hash.hash(anotherHAshableArrayWithObjectWithTheSameHash) + hash.hash(anotherHashableArrayWithObjectWithTheSameHash) ); }); });