diff --git a/lib/src/local_json_persist.dart b/lib/src/local_json_persist.dart index ada1351..e8331b0 100644 --- a/lib/src/local_json_persist.dart +++ b/lib/src/local_json_persist.dart @@ -59,10 +59,10 @@ class LocalJsonPersist { /// You can change this variable to globally change the directory: /// ``` /// // Will use the application's cache directory. - /// findDirectoryToUse = LocalPersist.findAppCacheDir; + /// LocalPersist.findDirectoryToUse = LocalPersist.findAppCacheDir; /// /// // Will use the application's downloads directory. - /// findDirectoryToUse = LocalPersist.findAppDownloadsDir; + /// LocalPersist.findDirectoryToUse = LocalPersist.findAppDownloadsDir; /// ``` /// static Future Function() findBaseDirectory = findAppDocDir; diff --git a/lib/src/local_persist.dart b/lib/src/local_persist.dart index 9e6ad3c..459f9c4 100644 --- a/lib/src/local_persist.dart +++ b/lib/src/local_persist.dart @@ -93,10 +93,10 @@ class LocalPersist { /// You can change this variable to globally change the directory: /// ``` /// // Will use the application's cache directory. - /// findDirectoryToUse = LocalPersist.findAppCacheDir; + /// LocalPersist.findDirectoryToUse = LocalPersist.findAppCacheDir; /// /// // Will use the application's downloads directory. - /// findDirectoryToUse = LocalPersist.findAppDownloadsDir; + /// LocalPersist.findDirectoryToUse = LocalPersist.findAppDownloadsDir; /// ``` /// static Future Function() findBaseDirectory = LocalPersist.findAppDocDir;