From 601e958dd7d5c3fe530bbb87db1b0a50246a0f4b Mon Sep 17 00:00:00 2001 From: thosakwe Date: Sat, 3 Sep 2016 08:04:00 -0400 Subject: [PATCH] Readme --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b96c82f1..b439a615 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,6 @@ The REST client can run in the browser or on the command-line. This library provides the same API as an Angel server. ```dart -// Import this file to import symbols "Angel" and "Service" -import 'package:angel_cli/shared.dart'; // Choose one or the other, depending on platform import 'package:angel_client/cli.dart'; import 'package:angel_client/browser.dart'; @@ -31,7 +29,7 @@ foo() async { } ``` -The REST client also supports reflection via `json_god`. There is no need to work with Maps; +The CLI client also supports reflection via `json_god`. There is no need to work with Maps; you can use the same class on the client and the server. ```dart @@ -50,4 +48,4 @@ bar() async { ``` Just like on the server, services support `index`, `read`, `create`, `modify`, `update` and -`remove`. \ No newline at end of file +`remove`.