From 6c61918f45bf56124ad06d7784ccb9730ab07d96 Mon Sep 17 00:00:00 2001 From: hvdb Date: Wed, 6 Aug 2014 08:47:30 +0200 Subject: [PATCH 1/2] docs: (routing): Small documentation fix. Change: Fixed missing quote and removed comma. Closes #1318 --- lib/routing/module.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routing/module.dart b/lib/routing/module.dart index 7430de4cd..d8dff6495 100644 --- a/lib/routing/module.dart +++ b/lib/routing/module.dart @@ -116,7 +116,7 @@ * 'addRecipe': ngRoute(path: '/addRecipe', view: 'addRecipe.html'), * 'recipe': ngRoute(path: '/recipe/:recipeId', mount: { * 'view': ngRoute(path: '/view', view: 'viewRecipe.html'), - * 'edit': ngRoute(path: '/edit', view: 'editRecipe.html), + * 'edit': ngRoute(path: '/edit', view: 'editRecipe.html') * }) * }); */ From df7cb241b7c81ff2e6a398d8d0ed8c3f7aa91957 Mon Sep 17 00:00:00 2001 From: hvdb Date: Wed, 6 Aug 2014 10:09:10 +0200 Subject: [PATCH 2/2] Added comma again --- lib/routing/module.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routing/module.dart b/lib/routing/module.dart index d8dff6495..d981b9b90 100644 --- a/lib/routing/module.dart +++ b/lib/routing/module.dart @@ -116,7 +116,7 @@ * 'addRecipe': ngRoute(path: '/addRecipe', view: 'addRecipe.html'), * 'recipe': ngRoute(path: '/recipe/:recipeId', mount: { * 'view': ngRoute(path: '/view', view: 'viewRecipe.html'), - * 'edit': ngRoute(path: '/edit', view: 'editRecipe.html') + * 'edit': ngRoute(path: '/edit', view: 'editRecipe.html'), * }) * }); */