From 02c47c42b0aacbc18c096efbe67528438f38694f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristof=20L=C3=BCnenschlo=C3=9F?= Date: Fri, 20 Sep 2024 15:02:56 +0300 Subject: [PATCH] Fix typo --- docs/derivations/zio-test-gen-derivation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/derivations/zio-test-gen-derivation.md b/docs/derivations/zio-test-gen-derivation.md index 66de50f3b..b46f53774 100644 --- a/docs/derivations/zio-test-gen-derivation.md +++ b/docs/derivations/zio-test-gen-derivation.md @@ -18,7 +18,7 @@ libraryDependencies += "dev.zio" %% "zio-schema-zio-test" % @VERSION@ ## DriveGen -The `DriveGen` inside `zio.schema` package provides the `gen` operator which takes a `Schmea[A]` implicitly and returns a `Gen[Sized, A]`: +The `DriveGen` inside `zio.schema` package provides the `gen` operator which takes a `Schema[A]` implicitly and returns a `Gen[Sized, A]`: ```scala object DeriveGen {