From ff20ce8795be0e67a1ca4aa4c34b61aa7927fdb0 Mon Sep 17 00:00:00 2001 From: Marcelo Glasberg <13332110+marcglasberg@users.noreply.github.com> Date: Fri, 4 Oct 2024 16:40:57 -0300 Subject: [PATCH] Small docs improvement. --- lib/src/local_json_persist.dart | 4 ++-- lib/src/local_persist.dart | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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;