Skip to content

Commit 44804d5

Browse files
committed
update docs
1 parent a0f258a commit 44804d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.markdown

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ Earlier versions of this library required the database asset to be compressed wi
6161

6262
The database will be extracted from the assets and copied into place within your application's private data directory. If you prefer to store the database file somewhere else (such as external storage) you can use the alternate constructor to specify a storage path. You must ensure that this path is available and writable whenever your application needs to access the database.
6363

64-
super(context, DATABASE_NAME, context.getExternalFilesDir(null).getAbsolutePath(), null, DATABASE_VERSION);
64+
```java
65+
super(context, DATABASE_NAME, context.getExternalFilesDir(null).getAbsolutePath(), null, DATABASE_VERSION);
66+
```
6567

6668
The database is made available for use the first time either `getReadableDatabase()` or `getWritableDatabase()` is called.
6769

0 commit comments

Comments
 (0)