aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2017-01-13 13:38:44 +0100
committerFelix Mulder <felix.mulder@gmail.com>2017-01-31 14:31:08 +0100
commiteeeada2083dead6ef15c2c45e4158fa677b8ec02 (patch)
tree0e5e634c3a5e5c69f17e1d4953a444ca766fbe09 /docs
parent2c08c956d39d9a06b3c5aa7eddc3b8c903f807df (diff)
downloaddotty-eeeada2083dead6ef15c2c45e4158fa677b8ec02.tar.gz
dotty-eeeada2083dead6ef15c2c45e4158fa677b8ec02.tar.bz2
dotty-eeeada2083dead6ef15c2c45e4158fa677b8ec02.zip
Fix dotty docs gen, scroll
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/contributing/getting-started.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/docs/contributing/getting-started.md b/docs/docs/contributing/getting-started.md
index e38c3a8fc..26862e790 100644
--- a/docs/docs/contributing/getting-started.md
+++ b/docs/docs/contributing/getting-started.md
@@ -23,7 +23,7 @@ Compiling and Running
---------------------
Start by cloning the repository:
-```none
+```bash
$ git clone https://github.com/lampepfl/dotty.git
$ cd dotty
```
@@ -31,7 +31,7 @@ $ cd dotty
Dotty provides a standard sbt build: compiling, running and starting a repl can
all be done from within sbt using
-```none
+```bash
$ sbt
> dotc tests/pos/HelloWorld.scala
> dotr HelloWorld
@@ -50,7 +50,7 @@ there is also a bash script that can be used in the same way:
Starting a REPL
---------------
-```none
+```bash
$ sbt
> repl
Welcome to Scala.next (pre-alpha) (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_101).
@@ -61,6 +61,6 @@ scala>
or via bash:
-```none
+```bash
$ ./bin/dotr
```