diff --git a/docs/content/en/docs/Other engines/vm.md b/docs/content/en/docs/Other engines/vm.md index 79d95d5c..9a0b6565 100644 --- a/docs/content/en/docs/Other engines/vm.md +++ b/docs/content/en/docs/Other engines/vm.md @@ -65,7 +65,7 @@ import 'package:path/path.dart' as p; LazyDatabase(() async { final dbFolder = await getDatabasesPath(); - final file = File(j.join(dbFolder, 'db.sqlite')); + final file = File(p.join(dbFolder, 'db.sqlite')); return VmDatabase(file); }) ``` @@ -163,4 +163,4 @@ Future> findNearby(Coordinate center, int radius) { ``` Aller the other functions are available under a similar name (`sqlSin`, `sqlCos`, `sqlAtan` and so on). -They have that `sql` prefix to avoid clashes with `dart:math`. \ No newline at end of file +They have that `sql` prefix to avoid clashes with `dart:math`.