From 72cab0f737ba1b0e44b3411f63fdc43e24e1b4a8 Mon Sep 17 00:00:00 2001 From: Simon Parten Date: Wed, 8 May 2024 10:28:56 +0200 Subject: [PATCH] Update README.md Remove extraneous "s" --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 57fad6d..5b790a0 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ import smithy4s.* import smithy4s.deriving.{given, *} import smithy.api.* // if you want to use hints from the official smithy standard library import alloy.* // if you want to use hints from the alloy library -import scala.annotations.experimental // the derivation of API uses experimental metaprogramming features, at this time. +import scala.annotation.experimental // the derivation of API uses experimental metaprogramming features, at this time. ``` @@ -168,7 +168,7 @@ structure Bar { ```scala import smithy4s.* import smithy4s.deriving.{given, *} -import scala.annotations.experimental +import scala.annotation.experimental @experimental trait HelloWorldService derives API { @@ -192,7 +192,7 @@ import smithy4s.* import smithy4s.deriving.{given, *} import smithy.api.* import alloy.* -import scala.annotations.experimental +import scala.annotation.experimental @hints(HttpError(403)) case class Bounce(message: String) extends Throwable derives Schema