Skip to content

Commit

Permalink
Docs: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
raquo committed May 17, 2024
1 parent 3b03969 commit 308231d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1567,7 +1567,7 @@ Perhaps the most popular legitimate use case for `flatMap` / `flatMapSwitch` is

```scala
val userS: Signal[User] = ???
val responseS: Signal[Response] = userS.flatMapSwitch { user =>
val responseS: EventStream[Response] = userS.flatMapSwitch { user =>
FetchStream.get(s"/user/${user.id}")
}
```
Expand Down

0 comments on commit 308231d

Please sign in to comment.