Skip to content

Commit

Permalink
Fix typos (#219)
Browse files Browse the repository at this point in the history
Found via `codespell -S c_src,deps`
  • Loading branch information
kianmeng authored Oct 31, 2022
1 parent d0a01b4 commit 47e6a5e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

An Elixir SQLite3 library.

If you are looking for the Ecto adapater, take a look at the
If you are looking for the Ecto adapter, take a look at the
[Ecto SQLite3 library][ecto_sqlite3].

Documentation: https://hexdocs.pm/exqlite
Expand Down
6 changes: 3 additions & 3 deletions lib/exqlite/connection.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defmodule Exqlite.Connection do
@moduledoc """
This module imlements connection details as defined in DBProtocol.
This module implements connection details as defined in DBProtocol.
## Attributes
Expand Down Expand Up @@ -110,7 +110,7 @@ defmodule Exqlite.Connection do
`:incremental`. Depending on the database size, `:incremental` may be
beneficial.
* `:locking_mode` - Defaults to `:normal`. Allowed values are `:normal` or
`:exclusive`. See [sqlite documenation][1] for more information.
`:exclusive`. See [sqlite documentation][1] for more information.
* `:secure_delete` - Defaults to `:off`. If enabled, it will cause SQLite3
to overwrite records that were deleted with zeros.
* `:wal_auto_check_point` - Sets the write-ahead log auto-checkpoint
Expand All @@ -125,7 +125,7 @@ defmodule Exqlite.Connection do
* `:soft_heap_limit` - The size limit in bytes for the heap limit.
* `:hard_heap_limit` - The size limit in bytes for the heap.
For more information about the options above, see [sqlite documenation][1]
For more information about the options above, see [sqlite documentation][1]
[1]: https://www.sqlite.org/pragma.html
"""
Expand Down
2 changes: 1 addition & 1 deletion test/exqlite/sqlite3_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ defmodule Exqlite.Sqlite3Test do
File.rm(path)
end

test "creates database path on disk when non-existant" do
test "creates database path on disk when non-existent" do
{:ok, path} = Temp.mkdir()
{:ok, conn} = Sqlite3.open(path <> "/non_exist.db")

Expand Down

0 comments on commit 47e6a5e

Please sign in to comment.