File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 6
6
7
7
An Elixir SQLite3 library.
8
8
9
- If you are looking for the Ecto adapater , take a look at the
9
+ If you are looking for the Ecto adapter , take a look at the
10
10
[ Ecto SQLite3 library] [ ecto_sqlite3 ] .
11
11
12
12
Documentation: https://hexdocs.pm/exqlite
Original file line number Diff line number Diff line change 1
1
defmodule Exqlite.Connection do
2
2
@ moduledoc """
3
- This module imlements connection details as defined in DBProtocol.
3
+ This module implements connection details as defined in DBProtocol.
4
4
5
5
## Attributes
6
6
@@ -110,7 +110,7 @@ defmodule Exqlite.Connection do
110
110
`:incremental`. Depending on the database size, `:incremental` may be
111
111
beneficial.
112
112
* `:locking_mode` - Defaults to `:normal`. Allowed values are `:normal` or
113
- `:exclusive`. See [sqlite documenation ][1] for more information.
113
+ `:exclusive`. See [sqlite documentation ][1] for more information.
114
114
* `:secure_delete` - Defaults to `:off`. If enabled, it will cause SQLite3
115
115
to overwrite records that were deleted with zeros.
116
116
* `:wal_auto_check_point` - Sets the write-ahead log auto-checkpoint
@@ -125,7 +125,7 @@ defmodule Exqlite.Connection do
125
125
* `:soft_heap_limit` - The size limit in bytes for the heap limit.
126
126
* `:hard_heap_limit` - The size limit in bytes for the heap.
127
127
128
- For more information about the options above, see [sqlite documenation ][1]
128
+ For more information about the options above, see [sqlite documentation ][1]
129
129
130
130
[1]: https://www.sqlite.org/pragma.html
131
131
"""
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ defmodule Exqlite.Sqlite3Test do
19
19
File . rm ( path )
20
20
end
21
21
22
- test "creates database path on disk when non-existant " do
22
+ test "creates database path on disk when non-existent " do
23
23
{ :ok , path } = Temp . mkdir ( )
24
24
{ :ok , conn } = Sqlite3 . open ( path <> "/non_exist.db" )
25
25
You can’t perform that action at this time.
0 commit comments