Skip to content

Commit

Permalink
Replace "the the" -> "the" (ramda#3291)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJavaGuy authored Aug 16, 2022
1 parent 50c6b57 commit 171b34e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/assocPath.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('assocPath', function() {
eq(obj2, {a: {b: 42}});
});

it('empty path replaces the the whole object', function() {
it('empty path replaces the whole object', function() {
eq(R.assocPath([], 3, {a: 1, b: 2}), 3);
});

Expand Down
2 changes: 1 addition & 1 deletion test/unwind.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe('unwind', function() {
eq(R.unwind('hobby', object), [object]);
});

it('returns a list containing only the original object if the the value for that key is not iterable', function() {
it('returns a list containing only the original object if the value for that key is not iterable', function() {
eq(R.unwind('passtimes', object), [object]);
eq(R.unwind('options', {
title: 'What is the best programming language?',
Expand Down

0 comments on commit 171b34e

Please sign in to comment.