Skip to content

Commit

Permalink
Correct typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Baccata committed Apr 26, 2024
1 parent 19c23d4 commit d6a3902
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ Scala 3.4.1 or newer is required.
SBT :

```
"com.neandertech" %% "smithy4s-deriving" % <version>
"tech.neander" %% "smithy4s-deriving" % <version>
```

The rest of the world :

```
"com.neandertech::smithy4s-deriving:<version>"
"tech.neander::smithy4s-deriving:<version>"
```

You'll typically need the following imports to use the derivation :
Expand All @@ -28,7 +28,7 @@ You'll typically need the following imports to use the derivation :
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 alloy.* // if you want to use hints from the alloy librgitary
import scala.annotations.experimental // the derivation of API uses experimental metaprogramming features, at this time.
```

Expand Down Expand Up @@ -135,9 +135,9 @@ namespace example
use example.foo#Bar
union Foo {
@JsonName("baz")
@jsonName("baz")
Bar: Bar
@JsonName("bar")
@jsonName("bar")
Baz: String
}
```
Expand Down

0 comments on commit d6a3902

Please sign in to comment.