From d1b582004280a42fc4c66e95ce9620facc42ed5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Otr=C4=99bski?= Date: Wed, 13 Sep 2023 11:36:44 +0200 Subject: [PATCH] Fix word typo in documentation --- docs-sources/usage/modifying.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs-sources/usage/modifying.md b/docs-sources/usage/modifying.md index a327f2ce..cfc9c148 100644 --- a/docs-sources/usage/modifying.md +++ b/docs-sources/usage/modifying.md @@ -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 @@ -54,4 +54,4 @@ implicit val diffOrg: Diff[Organization] = Diff.summon[Organization] // mapLike methods: .modify(_.peopleMap).matchByValue(_.age) .modify(_.peopleMap).matchByKey(_.weight) -``` \ No newline at end of file +```