Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #1

Merged
merged 1 commit into from
May 12, 2024
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
```


Expand Down Expand Up @@ -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 {
Expand All @@ -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
Expand Down