From 54d07653b8b7fb518b6a06cc98cfa0642a75f3ff Mon Sep 17 00:00:00 2001 From: Avinder Bahra Date: Wed, 25 Sep 2024 07:45:28 +0100 Subject: [PATCH] example fixes --- docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index d870ad66..8df9b637 100644 --- a/docs/index.md +++ b/docs/index.md @@ -32,7 +32,7 @@ To use the new Cats Effect 3 interop module, we need to also add the following l ```scala libraryDependencies ++= Seq( - "dev.zio" %% "zio-dynamodb-ce" "@VERSION@" + "dev.zio" %% "zio-dynamodb-ce" % "@VERSION@" ) ``` @@ -43,7 +43,7 @@ AWS tools like the CLI and Console read/write a special JSON representation of d ```scala libraryDependencies ++= Seq( - "dev.zio" %% "zio-dynamodb-json" "@VERSION@" + "dev.zio" %% "zio-dynamodb-json" % "@VERSION@" ) ```