Skip to content

Commit

Permalink
[JP] Use proper term in 'collections' lesson (elixirschool#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabon-f authored and doomspork committed Aug 29, 2016
1 parent ef4b8db commit 4677307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jp/lessons/basics/collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ iex> tl [3.14, :pie, "Apple"]
[:pie, "Apple"]
```

前述した関数に加えて、リストを頭部と尾部に分けるのに[パターンマッチング](../pattern-matching/)やパイプ演算子`|`を使うこともできます。このパターンについては後のレッスンで取り上げます:
前述した関数に加えて、リストを頭部と尾部に分けるのに[パターンマッチング](../pattern-matching/)やcons演算子(`|`)を使うこともできます。このパターンについては後のレッスンで取り上げます:

```elixir
iex> [h|t] = [3.14, :pie, "Apple"]
Expand Down

0 comments on commit 4677307

Please sign in to comment.