Skip to content

Commit 240f0e1

Browse files
author
exoego
committed
Merge remote-tracking branch 'upstream/master' into twitter-card
2 parents ed4a408 + d492eda commit 240f0e1

File tree

83 files changed

+1692
-638
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+1692
-638
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ It will incrementally build and serve site at `http://localhost:8080`
2626

2727
## Contributing ##
2828

29-
Please have a look at [http://docs.scala-lang.org/contribute.html](http://docs.scala-lang.org/contribute.html) before making a contribution.
29+
Please have a look at [https://docs.scala-lang.org/contribute.html](https://docs.scala-lang.org/contribute.html) before making a contribution.
3030
This document gives an overview of the type of documentation contained within the Scala Documentation repository and the repository's structure.
3131

3232
Small changes, or corrected typos will generally be pulled in right away. Large changes, like the addition of new documents, or the rewriting of
@@ -35,7 +35,7 @@ in order to be accepted.
3535

3636
## Dependencies ##
3737

38-
This site uses a Jekyll, a Ruby framework. You'll need Ruby and Bundler installed; see [Jekyll installation instructions](http://jekyllrb.com/docs/installation/) for the details.
38+
This site uses a Jekyll, a Ruby framework. You'll need Ruby and Bundler installed; see [Jekyll installation instructions](https://jekyllrb.com/docs/installation/) for the details.
3939

4040
## Building & Viewing ##
4141

@@ -53,12 +53,12 @@ If you add `--watch` at the end of the command line above, Jekyll will automatic
5353

5454
If you get `incompatible encoding` errors when generating the site under Windows, then ensure that the
5555
console in which you are running jekyll can work with UTF-8 characters. As described in the blog
56-
[Solving UTF problem with Jekyll on Windows](http://joseoncode.com/2011/11/27/solving-utf-problem-with-jekyll-on-windows/)
56+
[Solving UTF problem with Jekyll on Windows](https://joseoncode.com/2011/11/27/solving-utf-problem-with-jekyll-on-windows/)
5757
you have to execute `chcp 65001`. This command is best added to the `jekyll.bat`-script.
5858

5959
## Markdown ##
6060

61-
The markdown used in this site uses [kramdown](http://kramdown.gettalong.org/) extensions.
61+
The markdown used in this site uses [kramdown](https://kramdown.gettalong.org/) extensions.
6262

6363
### Markdown Editor for OSX ###
6464

@@ -68,4 +68,4 @@ There's a free markdown editor for OSX called [Mou](http://25.io/mou/). It's qui
6868

6969
## License ##
7070

71-
All documentation contained in this repository is licensed by EPFL under a Creative Commons Attribution-Share Alike 3.0 Unported license ("CC-BY-SA"), unless otherwise noted. By submitting a "pull request," or otherwise contributing to this repository, you implicitly agree to license your contribution under the above CC-BY-SA license. The source code of this website is licensed to EPFL under the [Scala License](http://www.scala-lang.org/node/146), unless otherwise noted.
71+
All documentation contained in this repository is licensed by EPFL under a Creative Commons Attribution-Share Alike 3.0 Unported license ("CC-BY-SA"), unless otherwise noted. By submitting a "pull request," or otherwise contributing to this repository, you implicitly agree to license your contribution under the above CC-BY-SA license. The source code of this website is licensed to EPFL under the [Scala License](https://www.scala-lang.org/node/146), unless otherwise noted.

_ba/tour/operators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Međutim, lakše je čitati kada se napiše kao infiksni operator:
2929
Možete koristiti bilo koji legalni identifikator kao operator.
3030
To uključuje i imena kao `add` ili simbole kao `+`.
3131
```tut
32-
case class Vec(val x: Double, val y: Double) {
33-
def +(that: Vec) = new Vec(this.x + that.x, this.y + that.y)
32+
case class Vec(x: Double, y: Double) {
33+
def +(that: Vec) = Vec(this.x + that.x, this.y + that.y)
3434
}
3535
3636
val vector1 = Vec(1.0, 1.0)

_overviews/cheatsheets/index.md renamed to _cheatsheets/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ by: Brendan O'Connor
88
about: Thanks to <a href="http://brenocon.com/">Brendan O'Connor</a>, this cheatsheet aims to be a quick reference of Scala syntactic constructions. Licensed by Brendan O'Connor under a CC-BY-SA 3.0 license.
99

1010
languages: [ba, fr, ja, pl, pt-br, zh-cn, th, ru]
11-
permalink: /cheatsheets/index.html
1211
---
1312

1413
<!-- ###### Contributed by {{ page.by }} -->

_config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,14 @@ collections:
3535
sips:
3636
output: true
3737
permalink: /:collection/:path.html
38+
cheatsheets:
39+
output: true
40+
permalink: /:collection/:path.html
3841
books:
3942
output: false
43+
getting-started:
44+
output: true
45+
permalink: /:collection/:path.html
4046
ja: # Japanese translations
4147
output: true
4248
permalink: /:collection/:path.html

0 commit comments

Comments
 (0)