Skip to content

Commit

Permalink
Fix a typo in the language name (elixirschool#1020)
Browse files Browse the repository at this point in the history
  • Loading branch information
nscyclone committed Mar 19, 2017
1 parent 46e5abb commit cd2435f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bg/lessons/basics/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ lang: bg

Нека погледнем един прост пример:

```elixirre
```elixir
iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
Expand Down
2 changes: 1 addition & 1 deletion bn/lessons/basics/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lang: bn

একটি সাধারণ উদাহরণ দেখা যাক-

```elixirre
```elixir
iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
Expand Down
2 changes: 1 addition & 1 deletion es/lessons/basics/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Tal como el nombre sugiere, una función anónima no tiene nombre. Como vimos en

Vamos a ver un ejemplo básico:

```elixirre
```elixir
iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
Expand Down
2 changes: 1 addition & 1 deletion gr/lessons/basics/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ lang: gr

Ας δούμε ένα βασικό παράδειγμα:

```elixirre
```elixir
iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
Expand Down
2 changes: 1 addition & 1 deletion jp/lessons/basics/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Elixirや多くの関数型言語では、関数は第一級市民(≒ファー

基本的な例を見てみましょう:

```elixirre
```elixir
iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
Expand Down
2 changes: 1 addition & 1 deletion ko/lessons/basics/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Elixir를 포함한 많은 함수형 언어에서, 함수들은 일급 시민입

기초적인 예제를 보도록 합시다.

```elixirre
```elixir
iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
Expand Down
2 changes: 1 addition & 1 deletion lessons/basics/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Just as the name implies, an anonymous function has no name. As we saw in the `

Let's look at a basic example:

```elixirre
```elixir
iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
Expand Down
2 changes: 1 addition & 1 deletion sk/lessons/basics/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Ako ich naznačuje už ich názov, tieto funkcie nemajú priradené meno. V kapi

Pozrime sa na jednoduchý príklad:

```elixirre
```elixir
iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
Expand Down

0 comments on commit cd2435f

Please sign in to comment.