Skip to content

Commit 826b052

Browse files
authored
Fix typos (#149)
Found via `typos --hidden --format brief`
1 parent 78fb45f commit 826b052

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

Diff for: CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ project adheres to [Semantic Versioning][semver].
6262

6363
## v0.10.3
6464

65-
- fixed: Handle unique cosntraint error formats.
66-
- changed: Updated depenendencies.
65+
- fixed: Handle unique constraint error formats.
66+
- changed: Updated dependencies.
6767

6868
## v0.10.2
6969

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

132132
## v0.7.1
133-
- 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.
133+
- 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.
134134

135135
## v0.7.0
136136
- changed: update dependencies to the latest.

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Running unit tests
8585
mix test
8686
```
8787
88-
Runing integration tests
88+
Running integration tests
8989
9090
```sh
9191
EXQLITE_INTEGRATION=true mix test

Diff for: integration_test/test_helper.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ excludes = [
8181

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

8787
# right now in lock_for_migrations() we do effectively nothing, this is because

Diff for: lib/ecto/adapters/sqlite3.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ defmodule Ecto.Adapters.SQLite3 do
124124
125125
### Case sensitivity
126126
127-
Case sensitivty for `LIKE` is off by default, and controlled by the `:case_sensitive_like`
127+
Case sensitivity for `LIKE` is off by default, and controlled by the `:case_sensitive_like`
128128
option outlined above.
129129
130130
However, for equality comparison, case sensitivity is always _on_.

Diff for: test/ecto/adapters/sqlite3/connection/to_constraints_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
defmodule Ecto.Adapters.SQLite3.Connection.ToCosntraintsTest do
1+
defmodule Ecto.Adapters.SQLite3.Connection.ToConstraintsTest do
22
use ExUnit.Case, async: true
33

44
alias Ecto.Adapters.SQLite3.Connection

Diff for: test/ecto/adapters/sqlite3/connection/windowing_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ defmodule Ecto.Adapters.SQLite3.Connection.WindowingTest do
9898
~s{ORDER BY s0."x")} == all(query)
9999
end
100100

101-
test "partition by ond order by over" do
101+
test "partition by one order by over" do
102102
query =
103103
Schema
104104
|> select([r], count(r.x) |> over(partition_by: [r.x, r.z], order_by: r.x))

0 commit comments

Comments
 (0)