Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ object StandardLibrary extends ScalaTutorialSection {
*
* - the empty list `Nil`, and
* - the construction operation `::` (pronounced ''cons''): `x :: xs` gives a new list
* with the first element `x`, followed by the elements of `xs` (which is a list itself).
* with the first element `x`, called the `head`, followed by the `tail` `xs`, which is itself a list of elements.
*
* For example:
*
Expand Down