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
2 changes: 1 addition & 1 deletion _tour/type-inference.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ It is also not compulsory to specify type parameters when [polymorphic methods](
Here are two examples:

```tut
case class MyPair[A, B](x: A, y: B);
case class MyPair[A, B](x: A, y: B)
val p = MyPair(1, "scala") // type: MyPair[Int, String]

def id[T](x: T) = x
Expand Down