=doc fix scaladoc warnings #18500

This commit is contained in:
Wojciech Langiewicz 2016-03-15 18:55:03 +01:00
parent 54fdc40f76
commit 2cdf447f6e
31 changed files with 92 additions and 93 deletions

View file

@ -10,7 +10,7 @@ import java.util.concurrent.CompletionStage
/**
* A convenience class to derive from to get everything from HttpService and Directives into scope.
* Implement the [[createRoute]] method to provide the Route and then call [[bindRoute]]
* Implement the [[#createRoute]] method to provide the Route and then call [[#bindRoute]]
* to start the server on the specified interface.
*/
abstract class HttpApp
@ -20,7 +20,7 @@ abstract class HttpApp
/**
* Starts an HTTP server on the given interface and port. Creates the route by calling the
* user-implemented [[createRoute]] method and uses the route to handle requests of the server.
* user-implemented [[#createRoute]] method and uses the route to handle requests of the server.
*/
def bindRoute(interface: String, port: Int, system: ActorSystem): CompletionStage[ServerBinding] =
bindRoute(interface, port, createRoute(), system)