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

Added note on possible circe import error in docs #6450

Merged
merged 4 commits into from Jun 5, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/docs/json.md
Expand Up @@ -44,6 +44,8 @@ import org.http4s.dsl.io._
import org.http4s.implicits._
```

Note: Under some setup options (we saw this in Scala 3.1.2 but not in 3.1.0), running `import io.circe._` might give you an error of `-- [E008] Not Found Error: value circe is not a member of io`. This means that `io` is set from some other package. In that case, you should run `import _root_.io.circe._`, analogously for the other `circe` imports.

cgoldammer marked this conversation as resolved.
Show resolved Hide resolved
Then the actual code:

```scala mdoc
Expand Down