From 36dc78a73a2b1d9e2d3f5335fb0ba9ef4edb049a Mon Sep 17 00:00:00 2001 From: Fidan Hakaj Date: Wed, 2 Aug 2017 08:29:55 +0300 Subject: [PATCH] Updates Routers.md - adds missing parenthesis (#2230) Adds missing parenthesis to *Handling Custom URIs* code example --- packages/react-navigation/docs/api/routers/Routers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-navigation/docs/api/routers/Routers.md b/packages/react-navigation/docs/api/routers/Routers.md index 87c7b863..89f44811 100644 --- a/packages/react-navigation/docs/api/routers/Routers.md +++ b/packages/react-navigation/docs/api/routers/Routers.md @@ -125,5 +125,5 @@ Object.assign(MyApp.router, { } return previousGetActionForPathAndParams(path, params); }, -}; +}); ```