Skip to content

Commit 260ed43

Browse files
committed
Link fixes. Fixes scala/docs.scala-lang.org #870.
1 parent 13e9567 commit 260ed43

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

_data/tutorials.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
- title: "Getting Started with Scala in IntelliJ"
22
url: "/documentation/getting-started-intellij-track/getting-started-with-scala-in-intellij.html"
33
- title: "Getting Started with Scala and sbt in the Command Line"
4-
url: "/documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-in-the-command-line.html"
4+
url: "/documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-on-the-command-line.html"
55
- title: "Building a Scala Project with IntelliJ and sbt"
66
url: "/documentation/getting-started-intellij-track/building-a-scala-project-with-intellij-and-sbt.html"
77
- title: "Testing Scala with sbt and ScalaTest in the Command Line"
8-
url: "/documentation/getting-started-sbt-track/testing-scala-with-sbt-in-the-command-line.html"
8+
url: "/documentation/getting-started-sbt-track/testing-scala-with-sbt-on-the-command-line.html"
99
- title: "Testing Scala in IntelliJ with ScalaTest"
1010
url: "/documentation/getting-started-intellij-track/testing-scala-in-intellij-with-scalatest.html"

documentation/getting-started-intellij-track/building-a-scala-project-with-intellij-and-sbt.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ or more than one code file.
1515
## Creating the project
1616
In this section, we'll show you how to create the project in IntelliJ. However, if you're
1717
comfortable with the command line, we recommend you try [Getting
18-
Started with Scala and sbt in the Command Line]({{site.baseurl}}/documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-in-the-command-line.html) and then come back
18+
Started with Scala and sbt in the Command Line]({{site.baseurl}}/documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-on-the-command-line.html) and then come back
1919

2020
here to the section "Writing Scala code".
2121

@@ -100,4 +100,3 @@ Continue learning the language for free online with
100100
You can also check out our [list of learning resources](http://scala-lang.org/documentation/).
101101

102102
[Up Next: Testing Scala in IntelliJ with scalatest]({{ site.baseurl }}/documentation/getting-started-intellij-track/testing-scala-in-intellij-with-scalatest.html)
103-

documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-in-the-command-line.md renamed to documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-on-the-command-line.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
2-
title: Getting Started with Scala and sbt in the Command Line
2+
title: Getting Started with Scala and sbt on the Command Line
33
layout: inner-page-no-masthead
44
disqus: true
5-
next-page: testing-scala-with-sbt-in-the-command-line
5+
redirect_from:
6+
- documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-on-the-command-line.html
7+
next-page: testing-scala-with-sbt-on-the-command-line
68
---
79

810
In this tutorial, you'll see how to create a Scala project from
@@ -86,4 +88,4 @@ Now that you know how to create a Scala project, you
8688
can continue learning online for free with [Scala Exercises](http://scala-exercises.org) or choose
8789
from our [list of educational resources](http://scala-lang.org/documentation/).
8890

89-
[Up Next: Testing Scala with sbt in the command line]({{ site.baseurl }}/getting-started-sbt-track/testing-scala-with-sbt-in-the-command-line.html)
91+
[Up Next: Testing Scala with sbt in the command line]({{ site.baseurl }}/documentation/getting-started-sbt-track/testing-scala-with-sbt-on-the-command-line.html)

documentation/getting-started-sbt-track/testing-scala-with-sbt-in-the-command-line.md renamed to documentation/getting-started-sbt-track/testing-scala-with-sbt-on-the-command-line.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
title: Testing Scala with sbt and ScalaTest in the Command Line
33
layout: inner-page-no-masthead
44
disqus: true
5-
previous-page: getting-started-with-scala-and-sbt-in-the-command-line
5+
redirect_from: documentation/getting-started-sbt-track/testing-scala-with-sbt-on-the-command-line.html
6+
previous-page: getting-started-with-scala-and-sbt-on-the-command-line
67
---
78

89
There are multiple libraries and testing methodologies for Scala,
910
but in this tutorial, we'll demonstrate one popular option from the ScalaTest framework
1011
called [FunSuite](http://www.scalatest.org/getting_started_with_fun_suite).
1112

12-
We assume you know [how to create a Scala project with sbt]({{ site.baseurl }}/documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-in-the-command-line.html).
13+
We assume you know [how to create a Scala project with sbt]({{ site.baseurl }}/documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-on-the-command-line.html).
1314

1415
## Setup
1516
1. In the command line, create a new directory somewhere (e.g. `Documents`).

documentation/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ includeTOC: true
1010
These tutorials will get you writing Scala code as quickly as possible. Choose one set of tutorials depending on whether you prefer to work in the command line or in an IDE.
1111

1212
## You prefer working in the command line
13-
* [Getting Started with Scala and sbt in the Command Line](/documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-in-the-command-line.html)
14-
* [Testing Scala with sbt and ScalaTest in the Command Line](/documentation/getting-started-sbt-track/testing-scala-with-sbt-in-the-command-line.html)
13+
* [Getting Started with Scala and sbt in the Command Line](/documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-on-the-command-line.html)
14+
* [Testing Scala with sbt and ScalaTest in the Command Line](/documentation/getting-started-sbt-track/testing-scala-with-sbt-on-the-command-line.html)
1515

1616
## You prefer working in an IDE
1717
* [Getting Started with Scala in IntelliJ](/documentation/getting-started-intellij-track/getting-started-with-scala-in-intellij.html)

0 commit comments

Comments
 (0)