Skip to content

Commit

Permalink
Improved "Pipe operator" lesson according to suggestion in elixirscho…
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr Rozumii authored and doomspork committed Jul 16, 2016
1 parent 18768e6 commit 1fefc66
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion fr/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- Transformation des tokens en majuscules

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion id/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- Mengubah semua token jadi huruf kapital

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion it/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ iex> "Elixir rocks" |> String.split
- Trasformare in maiuscolo ciascuna parola

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion jp/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ iex> "Elixir rocks" |> String.split
- 全てのトークンを大文字にする

```elixir
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion ko/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- 모든 토큰을 대문자로 만들기

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- Uppercase all the tokens

```elixir
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion my/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- Menukar semua token ke dalam huruf besar

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion no/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- Token i store bokstaver

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion pl/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- Zamiana na wielkie litery we wszystkich tokenach

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion pt/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- Converte palavras para letras maiúsculas

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion ru/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- Перевод всех слов строки в верхний регистр

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion sk/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ iex> "Elixir rocks" |> String.split
- Prevedenie slov na veľké písmená

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down
2 changes: 1 addition & 1 deletion vi/lessons/basics/pipe-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ iex> "Elixir rocks" |> String.split
- Uppercase all the tokens

```shell
iex> "Elixir rocks" |> String.split |> Enum.map( &String.upcase/1 )
iex> "Elixir rocks" |> String.upcase |> String.split
["ELIXIR", "ROCKS"]
```

Expand Down

0 comments on commit 1fefc66

Please sign in to comment.