Skip to content

Commit

Permalink
Fix typo in ecto.md (elixirschool#1069)
Browse files Browse the repository at this point in the history
* Fix typo in ecto.md

typo in joins example

* fix typo in joins topic in ecto.md for 11 languages
  • Loading branch information
shkrt authored and doomspork committed May 9, 2017
1 parent 4ae09a1 commit 6233588
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cn/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ query = from u in User,

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion es/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ Asumiendo que tenemos un perfil asociado a nuestro usuario, busquemos todos los

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion gr/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ query = from u in User,

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion id/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ Dengan asumsi kita punya profil yang terkait dengan user kita, mari dapatkan sem

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion jp/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ query = from u in User,

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion ko/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ query = from u in User,

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ Assuming we had a profile associated with our user, let's find all confirmed acc

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion pl/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ Załóżmy, że mamy profil połączony z użytkownikiem, by odszukać wszystkie

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion pt/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Assumindo que temos um perfil associado ao nosso utilizador, iremos encontramos

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion ru/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ query = from u in User,

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down
2 changes: 1 addition & 1 deletion vi/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ Ví dụ như ta có bảng Profile liên kết với User, ta hãy tìm tất c

```elixir
query = from p in Profile,
join: u in assoc(profile, :user),
join: u in assoc(p, :user),
where: u.confirmed == true
```

Expand Down

0 comments on commit 6233588

Please sign in to comment.