Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #219

Merged
merged 1 commit into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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