Fix broken links in docs, fixes (#23034) (#23038)

* Fix link after source was moved in 59f53e1a22, fixes https://github.com/akka/akka/issues/23034

* Fix broken link to Akka Cluster
This commit is contained in:
Philippus Baalman 2017-05-26 09:16:53 +02:00 committed by Arnout Engelen
parent fd9c2b6898
commit 194b223ee0
2 changed files with 3 additions and 3 deletions

View file

@ -875,7 +875,7 @@ behavior is not the default).
### Encoding Scala Actors nested receives without accidentally leaking memory ### Encoding Scala Actors nested receives without accidentally leaking memory
See this @extref[Unnested receive example](github:akka-docs/src/main/scala/docs/actor/UnnestedReceives.scala). See this @extref[Unnested receive example](github:akka-docs/src/test/scala/docs/actor/UnnestedReceives.scala).
<a id="stash"></a> <a id="stash"></a>
## Stash ## Stash

View file

@ -70,7 +70,7 @@ in an application composed of multiple JARs to reside under a single package nam
might scan all classes from `com.example.plugins` for specific service implementations with that package existing in might scan all classes from `com.example.plugins` for specific service implementations with that package existing in
several contributed JARs. several contributed JARs.
While it is possible to support overlapping packages with complex manifest headers, it's much better to use non-overlapping While it is possible to support overlapping packages with complex manifest headers, it's much better to use non-overlapping
package spaces and facilities such as @extref[Akka Cluster](github:akka-docs/rst/scala/code/docs/akka/current/common/cluster.html) package spaces and facilities such as @ref[Akka Cluster](../common/cluster.md)
for service discovery. Stylistically, many organizations opt to use the root package path as the name of the bundle for service discovery. Stylistically, many organizations opt to use the root package path as the name of the bundle
distribution file. distribution file.
@ -116,4 +116,4 @@ The `ActorSystemActivator` class is included in the `akka-osgi` artifact:
## Sample ## Sample
A complete sample project is provided in @extref[akka-sample-osgi-dining-hakkers](samples:akka-sample-osgi-dining-hakkers) A complete sample project is provided in @extref[akka-sample-osgi-dining-hakkers](samples:akka-sample-osgi-dining-hakkers)