Skip to content

Commit 47e6a5e

Browse files
authored
Fix typos (#219)
Found via `codespell -S c_src,deps`
1 parent d0a01b4 commit 47e6a5e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
An 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

1212
Documentation: https://hexdocs.pm/exqlite

lib/exqlite/connection.ex

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
defmodule 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
"""

test/exqlite/sqlite3_test.exs

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)