typo: is 'opened'

This commit is contained in:
alex 2020-04-20 11:28:21 +02:00
parent 785845fe3c
commit 09c8f2b6b1
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class Database {
/// Opens an sqlite3 database from a filename.
///
/// Unless [readOnly] is set to true, database is open in read/write mode.
/// Unless [readOnly] is set to true, database is opened in read/write mode.
factory Database.open(String fileName, {bool readOnly = false}) {
final dbOut = allocate<Pointer<types.Database>>();
final pathC = CBlob.allocateString(fileName);