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 #149

Merged
merged 1 commit into from
Aug 26, 2024
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
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
Loading