Skip to content

Commit

Permalink
Small docs improvement.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcglasberg committed Oct 4, 2024
1 parent 5bbfdf7 commit ff20ce8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/src/local_json_persist.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<void> Function() findBaseDirectory = findAppDocDir;
Expand Down
4 changes: 2 additions & 2 deletions lib/src/local_persist.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<void> Function() findBaseDirectory = LocalPersist.findAppDocDir;
Expand Down

0 comments on commit ff20ce8

Please sign in to comment.