Skip to content

Commit 3e576b9

Browse files
authored
Fix wrong default value of keyword argument in docstring (#320)
1 parent 87a0cdf commit 3e576b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SQLite.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ function rollback(db::DB, name::AbstractString)
688688
end
689689

690690
"""
691-
SQLite.drop!(db, table; ifexists::Bool=true)
691+
SQLite.drop!(db, table; ifexists::Bool=false)
692692
693693
drop the SQLite table `table` from the database `db`; `ifexists=true` will prevent an error being thrown if `table` doesn't exist
694694
"""
@@ -701,7 +701,7 @@ function drop!(db::DB, table::AbstractString; ifexists::Bool = false)
701701
end
702702

703703
"""
704-
SQLite.dropindex!(db, index; ifexists::Bool=true)
704+
SQLite.dropindex!(db, index; ifexists::Bool=false)
705705
706706
drop the SQLite index `index` from the database `db`; `ifexists=true` will not return an error if `index` doesn't exist
707707
"""

0 commit comments

Comments
 (0)