You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/tour/basics.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ It is a perfect way for anybody to experiment with a piece of Scala code anywher
26
26
27
27
Expressions are computable statements.
28
28
29
-
You can output results of expressions using the `println`.
29
+
You can output results of expressions using `println`.
30
30
31
31
```
32
32
println(1) // 1
@@ -211,7 +211,7 @@ if (point == yetAnotherPoint) {
211
211
// Point(1,2) and Point(2,2) are different.
212
212
```
213
213
214
-
There is a lot more to case classes that we'd like to introduce, and we are convinced you will fall in love with it! We will cover them in depth [later](case-classes.md).
214
+
There is a lot more to case classes that we'd like to introduce, and we are convinced you will fall in love with them! We will cover them in depth [later](case-classes.md).
0 commit comments