Chromium Code Reviews| Index: pkg/watcher/example/watch.dart |
| diff --git a/pkg/watcher/example/watch.dart b/pkg/watcher/example/watch.dart |
| index 247f66a5ecd9b91dec0d3319bb98bbbd92b40e71..cd929a8b4eeaf2a2283512f90cc7841942cf5b59 100644 |
| --- a/pkg/watcher/example/watch.dart |
| +++ b/pkg/watcher/example/watch.dart |
| @@ -7,7 +7,7 @@ library watch; |
| import 'dart:io'; |
| -import 'package:pathos/path.dart' as pathos; |
| +import 'package:path/path.dart'; |
|
nweiz
2013/07/12 21:21:49
This should be prefixed, to provide a good example
|
| import 'package:watcher/watcher.dart'; |
| main() { |
| @@ -17,7 +17,7 @@ main() { |
| return; |
| } |
| - var watcher = new DirectoryWatcher(pathos.absolute(args[0])); |
| + var watcher = new DirectoryWatcher(absolute(args[0])); |
| watcher.events.listen((event) { |
| print(event); |
| }); |