Skip to content

Commit

Permalink
fix(typos): fix typos in test and contributing.md
Browse files Browse the repository at this point in the history
  • Loading branch information
leonovoleksii authored and SkeLLLa committed Feb 22, 2021
1 parent 489e263 commit 2ee3ddd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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

Expand Down
4 changes: 2 additions & 2 deletions test/hasher.spec.ts
Expand Up @@ -70,7 +70,7 @@ describe('Hasher', () => {
'c0705a3e2b55b54d55a6fe675b7dfb48572bd3adf0c54aab621da2b3663a0796'
);

const anotherHAshableArrayWithObjectWithTheSameHash = [
const anotherHashableArrayWithObjectWithTheSameHash = [
{
someValue: 'somevalue',
toHashableString: () => 'another_value_to_hash',
Expand All @@ -81,7 +81,7 @@ describe('Hasher', () => {
},
];
expect(hash.hash(arrayHashable)).toEqual(
hash.hash(anotherHAshableArrayWithObjectWithTheSameHash)
hash.hash(anotherHashableArrayWithObjectWithTheSameHash)
);
});
});
Expand Down

0 comments on commit 2ee3ddd

Please sign in to comment.