diff --git a/docs/src/main/paradox/typed/distributed-data.md b/docs/src/main/paradox/typed/distributed-data.md index 0013e4e52c..1bd3804758 100644 --- a/docs/src/main/paradox/typed/distributed-data.md +++ b/docs/src/main/paradox/typed/distributed-data.md @@ -670,7 +670,7 @@ All entries can be made durable by specifying: pekko.cluster.distributed-data.durable.keys = ["*"] ``` -@scala[[LMDB](https://symas.com/lmdb/technical/)]@java[[LMDB](https://github.com/lmdbjava/lmdbjava/)] is the default storage implementation. It is +[LMDB](https://github.com/lmdbjava/lmdbjava/) is the default storage implementation. It is possible to replace that with another implementation by implementing the actor protocol described in `org.apache.pekko.cluster.ddata.DurableStore` and defining the `pekko.cluster.distributed-data.durable.store-actor-class` property for the new implementation. diff --git a/docs/src/main/paradox/typed/handling-actor-responses-with-scala3.md b/docs/src/main/paradox/typed/handling-actor-responses-with-scala3.md index 1fe9534aeb..a05d632e4e 100644 --- a/docs/src/main/paradox/typed/handling-actor-responses-with-scala3.md +++ b/docs/src/main/paradox/typed/handling-actor-responses-with-scala3.md @@ -30,7 +30,6 @@ A more in-depth explanation of the concepts used in applying Scala 3's Union typ be found in the following blog posts: * [Using Dotty Union types with Akka Typed](https://blog.lunatech.com/posts/2020-02-12-using-dotty-union-types-with-akka-typed) -* [Using Dotty Union types with Akka Typed - Part II](https://blog.lunatech.com/posts/2020-02-19-using-dotty-union-types-with-akka-typed-part-II) **Useful when:**