Browse Source

Update README to reflect dart best practices (#3 from sethladd/patch-1)

Dart style guide prefers `var` over concrete definitions
Luke 8 years ago
parent
commit
07fa2894a7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -41,14 +41,14 @@ There is a pretty sweet example project in the `example` folder. Check it out. O
 
 
 First, you should define a new `Router` object by initializing it as such:
 First, you should define a new `Router` object by initializing it as such:
 ```dart
 ```dart
-final Router router = new Router();
+final router = new Router();
 ```
 ```
 It may be convenient for you to store the router globally/statically so that
 It may be convenient for you to store the router globally/statically so that
 you can access the router in other areas in your application.
 you can access the router in other areas in your application.
 
 
 After instantiating the router, you will need to define your routes and your route handlers:
 After instantiating the router, you will need to define your routes and your route handlers:
 ```dart
 ```dart
-RouteHandler usersHandler = (Map<String, String> params) {
+var usersHandler = (Map<String, String> params) {
   return new UsersScreen(params["id"]);
   return new UsersScreen(params["id"]);
 };
 };