Skip to content

Commit

Permalink
Fix typos (#149)
Browse files Browse the repository at this point in the history
Found via `typos --hidden --format brief`
  • Loading branch information
kianmeng authored Aug 26, 2024
1 parent 78fb45f commit 826b052
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ project adheres to [Semantic Versioning][semver].

## v0.10.3

- fixed: Handle unique cosntraint error formats.
- changed: Updated depenendencies.
- fixed: Handle unique constraint error formats.
- changed: Updated dependencies.

## v0.10.2

Expand Down Expand Up @@ -130,7 +130,7 @@ project adheres to [Semantic Versioning][semver].
- added: `:time` decode support.

## v0.7.1
- fixed: Backport of default drops to `:restrict` are now backwards compatible with older versions of `ecto_sql`. We don't really have support for `drop index ... cascade` as it is not in the grammer of sqlite.
- fixed: Backport of default drops to `:restrict` are now backwards compatible with older versions of `ecto_sql`. We don't really have support for `drop index ... cascade` as it is not in the grammar of sqlite.

## v0.7.0
- changed: update dependencies to the latest.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Running unit tests
mix test
```
Runing integration tests
Running integration tests
```sh
EXQLITE_INTEGRATION=true mix test
Expand Down
2 changes: 1 addition & 1 deletion integration_test/test_helper.exs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ excludes = [

# SQLite will return a string for schemaless map types as
# Ecto does not have enough information to call the associated loader
# that converts the string JSON representaiton into a map
# that converts the string JSON representation into a map
:map_type_schemaless,

# right now in lock_for_migrations() we do effectively nothing, this is because
Expand Down
2 changes: 1 addition & 1 deletion lib/ecto/adapters/sqlite3.ex
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ defmodule Ecto.Adapters.SQLite3 do
### Case sensitivity
Case sensitivty for `LIKE` is off by default, and controlled by the `:case_sensitive_like`
Case sensitivity for `LIKE` is off by default, and controlled by the `:case_sensitive_like`
option outlined above.
However, for equality comparison, case sensitivity is always _on_.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule Ecto.Adapters.SQLite3.Connection.ToCosntraintsTest do
defmodule Ecto.Adapters.SQLite3.Connection.ToConstraintsTest do
use ExUnit.Case, async: true

alias Ecto.Adapters.SQLite3.Connection
Expand Down
2 changes: 1 addition & 1 deletion test/ecto/adapters/sqlite3/connection/windowing_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ defmodule Ecto.Adapters.SQLite3.Connection.WindowingTest do
~s{ORDER BY s0."x")} == all(query)
end

test "partition by ond order by over" do
test "partition by one order by over" do
query =
Schema
|> select([r], count(r.x) |> over(partition_by: [r.x, r.z], order_by: r.x))
Expand Down

0 comments on commit 826b052

Please sign in to comment.