From 30e431252ce53a3a93b03c0c4aeb033328527dda Mon Sep 17 00:00:00 2001 From: Jakub Nowicki Date: Tue, 18 Apr 2023 09:34:12 +0200 Subject: [PATCH] docs: Fix typo in docs. --- man/router_ui.Rd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/router_ui.Rd b/man/router_ui.Rd index c3077ce..30907ea 100644 --- a/man/router_ui.Rd +++ b/man/router_ui.Rd @@ -33,7 +33,7 @@ If you are defining the router inside a shiny module, ui <- function() { router_ui( route("/", root_page(id = "root")), - route("/other", other_page(id = "other")), + route("other", other_page(id = "other")), page_404 = page404( message404 = "Please check if you passed correct bookmark name!") )