Chromium Code Reviews| Index: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart |
| diff --git a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart |
| index a03491abf047f034326944faae7c942836946075..b360f38aef361ce9ffa7a8adc214bc8842c82a67 100644 |
| --- a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart |
| +++ b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart |
| @@ -58,13 +58,11 @@ |
| * Other options for client-side data storage include: |
| * |
| * * [Window.localStorage]—a |
| - * basic mechanism in which data is stored as a [Map]. |
| + * basic mechanism that stores data as a [Map], |
| + * and where both the keys and the values are strings. |
| * |
| * * [dart:web_sql]—a database that can be queried with SQL. |
| * |
| - * * The [Lawndart](http://pub.dartlang.org/packages/lawndart) package, |
|
Emily Fortuna
2013/09/04 17:23:32
why no longer talk about lawndart?
blois
2013/09/04 17:34:33
This was from https://codereview.chromium.org/2368
|
| - * which helps you deal with the wide array of client-side storage options. |
| - * |
| * For a tutorial about using the indexed_db library with Dart, |
| * check out |
| * [Use IndexedDB](http://www.dartlang.org/docs/tutorials/indexeddb/). |