Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Unified Diff: packages/csslib/README.md

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/csslib/CHANGELOG.md ('k') | packages/csslib/example/call_parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/csslib/README.md
diff --git a/packages/csslib/README.md b/packages/csslib/README.md
index 1610d3b847368051b55d590b763168ccc763c658..8a71da49279a9668d276a57ba44cdb3343f84b5e 100644
--- a/packages/csslib/README.md
+++ b/packages/csslib/README.md
@@ -13,13 +13,12 @@ Usage
Parsing CSS is easy!
```dart
-import 'package:csslib/parser.dart' show parse;
-import 'package:csslib/css.dart';
+import 'package:csslib/parser.dart';
main() {
var stylesheet = parse(
'.foo { color: red; left: 20px; top: 20px; width: 100px; height:200px }');
- print(stylesheet.toString());
+ print(stylesheet.toDebugString());
}
```
« no previous file with comments | « packages/csslib/CHANGELOG.md ('k') | packages/csslib/example/call_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698