Skip to content

Commit 3e00677

Browse files
committed
cleanups
1 parent 639ce43 commit 3e00677

15 files changed

+25
-45
lines changed

_config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ scala-212-version: 2.12.16
2020
scala-3-version: 3.1.3
2121

2222
collections:
23-
contribute_resources:
24-
output: false
2523
style:
2624
output: true
2725
overviews:

_includes/column-list-of-items.html

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{% comment %}
2-
Layouts using this include should pass an include variable called 'collection' referencing a collection carrying the data (i.e.: contribute_community_tickets, contribute_resources...)
2+
Layouts using this include should pass an include variable called 'links' referencing a list carrying the data
33
{% endcomment %}
44

55
<div class="documentation">
6-
{% for link in include.links %}
7-
<a href="{% if link.link contains '://' %}{{link.link}}{% else %}{{site.baseurl}}{{link.link}}{% endif %}"
8-
class="doc-item doc-item-link">
9-
<div class="doc-item-header">
10-
<i class="{{link.icon}}"></i>
11-
<h4>{{link.title}}</h4>
12-
</div>
13-
<div class="doc-item-main">
14-
<p>{{link.description}}</p>
15-
</div>
16-
</a>
17-
{% endfor %}
6+
{% for link in include.links %}
7+
<a href="{% if link.link contains '://' %}{{link.link}}{% else %}{{site.baseurl}}{{link.link}}{% endif %}"
8+
class="doc-item doc-item-link">
9+
<div class="doc-item-header">
10+
<i class="{{link.icon}}"></i>
11+
<h4>{{link.title}}</h4>
12+
</div>
13+
<div class="doc-item-main">
14+
<p>{{link.description}}</p>
15+
</div>
16+
</a>
17+
{% endfor %}
1818
</div>

_overviews/contribute/add-guides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Add New Guides/Tutorials
3-
num: 8
3+
num: 7
44
---
55

66
## Why Contribute New Learning Material?

_overviews/contribute/bug-reporting-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Bug Reporting Guide
3-
num: 9
3+
num: 8
44
---
55

66
The Scala compiler and standard library bug tracker is located at [https://github.com/scala/bug](https://github.com/scala/bug), and for Scala 3, it is located at [github.com/lampepfl/dotty](https://github.com/lampepfl/dotty/issues). Before you submit a bug make sure that it is certainly a bug by following instructions

_overviews/contribute/codereviews.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Code Review Contributions
3-
num: 4
3+
num: 3
44
---
55
## Code Review Contributions
66

_overviews/contribute/corelibs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Core Library Contributions
3-
num: 5
3+
num: 4
44
---
55
## Core Library Contributions
66

_overviews/contribute/documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Documentation Contributions
3-
num: 6
3+
num: 5
44
---
55
## Contributing Documentation to the Scala project
66

_overviews/contribute/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Contributing guide
3-
num: 11
3+
num: 10
44
---
55

66
| **Shortcut** | **Description** |

_overviews/contribute/hacker-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Scala 2 Hacker's Guide
33
by: Eugene Burmako
4-
num: 13
4+
num: 12
55
---
66
<br>
77
This guide is intended to help you get from an idea of fixing a bug or implementing a new feature into a nightly Scala build, and, ultimately, to a production release of Scala incorporating your idea.

_overviews/contribute/inclusive-language-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Inclusive Language Guide
3-
num: 3
3+
num: 2
44
---
55

66
We are committed to providing a friendly, safe and welcoming environment for

_overviews/contribute/partest-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Running the Test Suite
3-
num: 14
3+
num: 13
44
---
55

66
Partest is a custom parallel testing tool that we use to run the test suite for the Scala compiler and library. Go to the scala project folder from your local checkout and run it via `sbt`, `ant` or standalone as follows.

_overviews/contribute/scala-internals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Scala Contributors Forum
3-
num: 10
3+
num: 9
44
---
55

66
The [Scala Contributors Forum][scala-contributors] is where discussions about the Scala ecosystem

_overviews/contribute/scala-standard-library-api-documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Contribute to API Documentation
3-
num: 7
3+
num: 6
44
---
55

66
This page is specific to API documentation contributions – that is, API

_overviews/contribute/tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: IDE and Build Tool Contributions
3-
num: 12
3+
num: 11
44

55
# Projects list:
66
projects:

0 commit comments

Comments
 (0)