Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.

Word typo in documentation fixed #445

Merged
merged 1 commit into from
Sep 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs-sources/usage/modifying.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ with the `Diff.ignore` instance.
## collection support

Specify how objects within particular collection within particular diff instance should be matched.
We distinguish free main types of collections:
We distinguish three main types of collections:
- seqLike collections where elements are indexed collections
- setLike collections where elements aren't indexed
- mapLike collections where elements(values) are indexed by some keys
Expand All @@ -54,4 +54,4 @@ implicit val diffOrg: Diff[Organization] = Diff.summon[Organization]
// mapLike methods:
.modify(_.peopleMap).matchByValue(_.age)
.modify(_.peopleMap).matchByKey(_.weight)
```
```