File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 66
77An Elixir SQLite3 library.
88
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
1010[ Ecto SQLite3 library] [ ecto_sqlite3 ] .
1111
1212Documentation: https://hexdocs.pm/exqlite
Original file line number Diff line number Diff line change 11defmodule Exqlite.Connection do
22 @ moduledoc """
3- This module imlements connection details as defined in DBProtocol.
3+ This module implements connection details as defined in DBProtocol.
44
55 ## Attributes
66
@@ -110,7 +110,7 @@ defmodule Exqlite.Connection do
110110 `:incremental`. Depending on the database size, `:incremental` may be
111111 beneficial.
112112 * `: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.
114114 * `:secure_delete` - Defaults to `:off`. If enabled, it will cause SQLite3
115115 to overwrite records that were deleted with zeros.
116116 * `:wal_auto_check_point` - Sets the write-ahead log auto-checkpoint
@@ -125,7 +125,7 @@ defmodule Exqlite.Connection do
125125 * `:soft_heap_limit` - The size limit in bytes for the heap limit.
126126 * `:hard_heap_limit` - The size limit in bytes for the heap.
127127
128- For more information about the options above, see [sqlite documenation ][1]
128+ For more information about the options above, see [sqlite documentation ][1]
129129
130130 [1]: https://www.sqlite.org/pragma.html
131131 """
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ defmodule Exqlite.Sqlite3Test do
1919 File . rm ( path )
2020 end
2121
22- test "creates database path on disk when non-existant " do
22+ test "creates database path on disk when non-existent " do
2323 { :ok , path } = Temp . mkdir ( )
2424 { :ok , conn } = Sqlite3 . open ( path <> "/non_exist.db" )
2525
You can’t perform that action at this time.
0 commit comments