Skip to content

Commit ad3b9dc

Browse files
committed
Try fix algolia
1 parent ba6fe7a commit ad3b9dc

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
2-
id: introduction
2+
id: get-started
33
title: Introduction
44
---
55
Scala 3 is a game changer in terms of compatibility in the Scala ecosystem that will greatly improve the day-to-day experience of every Scala programmer, starting from the migration.
66

77
In this section you will learn about the compatibility between Scala 2.13 and Scala 3 at the different stages of the program lifetime. You will find the answer of the following questions:
88

9-
**[Source Level:](source.md)**
9+
**[Source Level:](compatibility/source.md)**
1010
- Is Scala 3 a different language?
1111
- How hard is it to translate a Scala 2.13 project into Scala 3?
1212

13-
**[Classpath Level:](classpath.md)**
13+
**[Classpath Level:](compatibility/classpath.md)**
1414
- Can we use a Scala 2.13 library in Scala 3?
1515
- Can we use a Scala 3 library in Scala 2.13?
1616

17-
**[Runtime:](runtime.md)**
17+
**[Runtime:](compatibility/runtime.md)**
1818
- Is it safe to deploy a Scala 3 program into production?
1919
- How fast are Scala 3 programs compare to Scala 2.13?
2020

21-
**[Metaprogramming:](metaprogramming.md)**
21+
**[Metaprogramming:](compatibility/metaprogramming.md)**
2222
- How will my Scala 2.13 project be affected by the new Scala 3 macros?
2323
- How can I port my macro libary to Scala 3?

docs/tutorials/prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: prerequisites
33
title: Project Prerequisites
44
---
55

6-
The migration to Scala 3 is made easier thanks to the interoperability between Scala 2.13 and Scala 3, as described in the [Compatibility Reference](../compatibility/introduction.md) page.
6+
The migration to Scala 3 is made easier thanks to the interoperability between Scala 2.13 and Scala 3, as described in the [Compatibility Reference](../get-started.md) page.
77

88
However, there are a few prerequisites that a Scala 2.13 project must meet before being ported to Scala 3:
99
- It must not depend on a macro library that has not yet been ported to Scala 3.

website/i18n/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"compatibility/classpath": {
99
"title": "Classpath Level"
1010
},
11-
"compatibility/introduction": {
11+
"get-started": {
1212
"title": "Introduction"
1313
},
1414
"compatibility/metaprogramming": {

website/pages/en/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class HomeSplash extends React.Component {
8383
<div className="inner">
8484
<ProjectTitle />
8585
<PromoSection>
86-
<Button href={docUrl("compatibility/introduction.html", language)}>
86+
<Button href={docUrl("get-started.html", language)}>
8787
Get started
8888
</Button>
8989
</PromoSection>
@@ -99,12 +99,12 @@ const Compatibility = () => (
9999
{
100100
content:
101101
'Scala 3 has been carefully designed to improve the backward and forward compatibility of the Scala programming language.\n\n' +
102-
`In the [Compatibility Reference](${docUrl('compatibility/introduction.html')}) ` +
102+
`In the [Compatibility Reference](${docUrl('get-started.html')}) ` +
103103
'you will learn about the compatibility between Scala 2.13 and Scala 3 in the context of the migration.',
104104
image: `${imgUrl('puzzle-primary.svg')}`,
105105
imageAlt: 'Icon made by Nikita Kozin from the Noun Project',
106106
imageAlign: 'left',
107-
title: `[Compatibility](${docUrl('compatibility/introduction.html')})`,
107+
title: `[Compatibility](${docUrl('get-started.html')})`,
108108
},
109109
]}
110110
</Block>

website/sidebars.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"docs": {
33
"Compatibility Reference": [
4-
"compatibility/introduction",
4+
"get-started",
55
"compatibility/source",
66
"compatibility/classpath",
77
"compatibility/runtime",

website/siteConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const siteConfig = {
2323

2424
// For no header links in the top nav bar -> headerLinks: [],
2525
headerLinks: [
26-
{doc: 'compatibility/introduction', label: 'User Guide'},
26+
{doc: 'get-started', label: 'User Guide'},
2727
{doc: 'contributing', label: 'Contribute'},
2828
{ href: repoUrl, label: "GitHub", external: true }
2929
],

0 commit comments

Comments
 (0)