Skip to content

Commit b3c1de3

Browse files
author
LaksCastro
committed
(#7) Tiny documentation fixes README.md
1 parent 6726d5e commit b3c1de3

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ print(newDocumentFile);
6565
/// You have [write] and [read] access to all persisted [URI]s
6666
final listOfPersistedUris = await persistedUriPermissions();
6767
68-
print(newDocumentFile);
68+
print(listOfPersistedUris);
6969
```
7070

7171
- Revoke a current persisted [URI], from `SAF` API
@@ -76,8 +76,6 @@ final uri = ...;
7676
7777
/// After calling this, you no longer has access to the [uri]
7878
await releasePersistableUriPermission(uri);
79-
80-
print(newDocumentFile);
8179
```
8280

8381
- Convenient method to know if a given [uri] is a persisted `uri` ("persisted uri" means that you have `write` and `read` access to the `uri` even if devices reboot)
@@ -89,8 +87,6 @@ final uri = ...;
8987
9088
/// Verify if you have [write] and [read] access to a given [uri]
9189
final isPersisted = await isPersistedUri(uri);
92-
93-
print(newDocumentFile);
9490
```
9591

9692
### Android API's

0 commit comments

Comments
 (0)