Skip to content

Commit 753b3ef

Browse files
committed
respond to review feedback
1 parent 73d1b82 commit 753b3ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: tutorials/tour/basics.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ In this page, we will cover basics of Scala.
1414

1515
## Trying Scala in the Browser
1616

17-
You can run Scala in your browser with [ScalaFiddle](https://scalafiddle.io).
17+
You can run Scala in your browser with ScalaFiddle.
1818

19-
1. Go to https://scalafiddle.io.
19+
1. Go to [https://scalafiddle.io](https://scalafiddle.io).
2020
2. Paste `println("Hello, world!")` in the left pane.
2121
3. Hit "Run" button. Output appears in the right pane.
2222

@@ -41,7 +41,7 @@ You can name results of expressions with the `val` keyword.
4141

4242
```tut
4343
val x = 1 + 1
44-
println(x * x) // 4
44+
println(x) // 2
4545
```
4646

4747
Named results, such as `x` here, are called values. Referencing
@@ -91,7 +91,7 @@ println({
9191

9292
## Functions
9393

94-
Functions are expressions that take parameters and compute a result.
94+
Functions are expressions that take parameters.
9595

9696
You can define a function that returns a given integer plus one:
9797

0 commit comments

Comments
 (0)