Skip to content

Commit

Permalink
Fix the dependencies example in the basics/mix lesson (elixirschool…
Browse files Browse the repository at this point in the history
  • Loading branch information
nscyclone committed Jul 29, 2016
1 parent aa5d4b2 commit f28fbde
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bg/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ For this example let's look at a project with dependencies, like [phoenix_slim](
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion cn/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ $ iex -S mix
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion es/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Para este ejemplo vamos a ver un proyecto con dependencias, como [phoenix_slim](
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion fr/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Pour cet exemple, regardons les dépendances d'un projet existant, comme [phoeni
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion id/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Untuk contoh ini mari lihat sebuah project dengan dependensi, seperti [phoenix_s
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion it/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Per questo esempio, diamo uno sguardo ad un progetto con le dipendenze, come [ph
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion jp/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Generated example app
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion ko/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Generated example app
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ For this example let's look at a project with dependencies, like [phoenix_slim](
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion my/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Sebagai contoh mari kita lihat satu projek yang mengandungi komponen sokongan, s
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion no/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ I dette eksemplet skal vi se på et prosjekt med tilleggspakker - [phoenix_slim]
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion pl/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Rzućmy okiem na przykład na projekt [phoenix_slim](https://github.com/doomspor
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion pt/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Para este exemplo vamos ver um projeto com dependências, como [phoenix_slim](h
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion ru/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Generated example app
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion sk/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Pozrime sa na ukážku z nejakého projektu so závislosťami, napríklad [phoen
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down
2 changes: 1 addition & 1 deletion vi/lessons/basics/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ For this example let's look at a project with dependencies, like [phoenix_slim](
def deps do
[{:phoenix, "~> 1.1 or ~> 1.2"},
{:phoenix_html, "~> 2.3"},
{:cowboy, "~> 1.0"},
{:cowboy, "~> 1.0", only: [:dev, :test]},
{:slime, "~> 0.14"}]
end
```
Expand Down

0 comments on commit f28fbde

Please sign in to comment.