Skip to content

Commit 2780a77

Browse files
H1GdevSimenB
authored andcommitted
Remove duplicate 'arrays' in ExpectAPI.md. (#7775)
1 parent 4bfcb5b commit 2780a77

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/ExpectAPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ test('the house has my desired features', () => {
10391039
```
10401040

10411041
```js
1042-
describe('toMatchObject applied to arrays arrays', () => {
1042+
describe('toMatchObject applied to arrays', () => {
10431043
test('the number of elements must match exactly', () => {
10441044
expect([{foo: 'bar'}, {baz: 1}]).toMatchObject([{foo: 'bar'}, {baz: 1}]);
10451045
});

website/versioned_docs/version-22.x/ExpectAPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ test('the house has my desired features', () => {
770770
```
771771

772772
```js
773-
describe('toMatchObject applied to arrays arrays', () => {
773+
describe('toMatchObject applied to arrays', () => {
774774
test('the number of elements must match exactly', () => {
775775
expect([{foo: 'bar'}, {baz: 1}]).toMatchObject([{foo: 'bar'}, {baz: 1}]);
776776
});

website/versioned_docs/version-23.x/ExpectAPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,7 @@ test('the house has my desired features', () => {
10291029
```
10301030

10311031
```js
1032-
describe('toMatchObject applied to arrays arrays', () => {
1032+
describe('toMatchObject applied to arrays', () => {
10331033
test('the number of elements must match exactly', () => {
10341034
expect([{foo: 'bar'}, {baz: 1}]).toMatchObject([{foo: 'bar'}, {baz: 1}]);
10351035
});

website/versioned_docs/version-24.0/ExpectAPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ test('the house has my desired features', () => {
10401040
```
10411041

10421042
```js
1043-
describe('toMatchObject applied to arrays arrays', () => {
1043+
describe('toMatchObject applied to arrays', () => {
10441044
test('the number of elements must match exactly', () => {
10451045
expect([{foo: 'bar'}, {baz: 1}]).toMatchObject([{foo: 'bar'}, {baz: 1}]);
10461046
});

0 commit comments

Comments
 (0)