| Index: pkg/watcher/example/watch.dart
|
| diff --git a/pkg/watcher/example/watch.dart b/pkg/watcher/example/watch.dart
|
| index 247f66a5ecd9b91dec0d3319bb98bbbd92b40e71..235578dd673678f30393c5f78217ab47c0684256 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' as p;
|
| import 'package:watcher/watcher.dart';
|
|
|
| main() {
|
| @@ -17,7 +17,7 @@ main() {
|
| return;
|
| }
|
|
|
| - var watcher = new DirectoryWatcher(pathos.absolute(args[0]));
|
| + var watcher = new DirectoryWatcher(p.absolute(args[0]));
|
| watcher.events.listen((event) {
|
| print(event);
|
| });
|
|
|