rename Props.withRouting to .withRouter

This commit is contained in:
Roland 2011-12-13 11:32:24 +01:00
parent 4b2b41e725
commit 4bd9f6ae1a
11 changed files with 28 additions and 28 deletions

View file

@ -137,5 +137,5 @@ case class Props(creator: () ⇒ Actor = Props.defaultCreator,
* Returns a new Props with the specified router config set
* Java API
*/
def withRouting(r: RouterConfig) = copy(routerConfig = r)
def withRouter(r: RouterConfig) = copy(routerConfig = r)
}