Skip to content

Commit 68ed899

Browse files
authored
Merge pull request #2743 from Moiman/osa1a-broken-link
Fix broken links in in part2
2 parents da7fbde + 0c35e74 commit 68ed899

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/content/2/en/part2c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ A synchronous way of making requests that's common in Java programming, for inst
9494
```java
9595
HTTPRequest request = new HTTPRequest();
9696

97-
String url = "https://fullstack-exampleapp.herokuapp.com/data.json";
97+
String url = "https://studies.cs.helsinki.fi/exampleapp/data.json";
9898
List<Note> notes = request.get(url);
9999

100100
notes.forEach(m => {

src/content/2/es/part2c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Una forma síncrona de realizar solicitudes que es común en la programación Ja
9494
```java
9595
HTTPRequest request = new HTTPRequest();
9696

97-
String url = "https://fullstack-exampleapp.herokuapp.com/data.json";
97+
String url = "https://studies.cs.helsinki.fi/exampleapp/data.json";
9898
List<Note> notes = request.get(url);
9999

100100
notes.forEach(m => {

src/content/2/fi/osa2a.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Jos taulukon funktionaalinen käsittely tuntuu vielä vieraalta, kannattaa katso
8080

8181
### Kokoelmien renderöiminen
8282

83-
Tehdään nyt Reactilla [osan 0](/osa0) alussa käytettyä esimerkkisovelluksen [Single page app -versiota](https://fullstack-exampleapp.herokuapp.com/spa) vastaavan sovelluksen 'frontend' eli selainpuolen sovelluslogiikka.
83+
Tehdään nyt Reactilla [osan 0](/osa0) alussa käytettyä esimerkkisovelluksen [Single page app -versiota](https://studies.cs.helsinki.fi/exampleapp/spa) vastaavan sovelluksen 'frontend' eli selainpuolen sovelluslogiikka.
8484

8585
Aloitetaan seuraavasta (tiedosto <i>App.js</i>):
8686

src/content/2/fi/osa2c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Esim. Java-ohjelmoinnista tuttu synkroninen tapa tehdä kyselyjä etenisi seuraa
9090
```java
9191
HTTPRequest request = new HTTPRequest();
9292

93-
String url = "https://fullstack-exampleapp.herokuapp.com/data.json";
93+
String url = "https://studies.cs.helsinki.fi/exampleapp/data.json";
9494
List<Note> notes = request.get(url);
9595

9696
notes.forEach(m => {

src/content/2/fr/part2c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Une manière synchrone de faire des requêtes qui est courante dans la programma
9494
```java
9595
HTTPRequest request = new HTTPRequest();
9696

97-
String url = "https://fullstack-exampleapp.herokuapp.com/data.json";
97+
String url = "https://studies.cs.helsinki.fi/exampleapp/data.json";
9898
List<Note> notes = request.get(url);
9999

100100
notes.forEach(m => {

src/content/2/pt/part2c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Uma forma comum de fazer requisições síncronas em Java, por exemplo, funciona
9494
```java
9595
HTTPRequest request = new HTTPRequest();
9696

97-
String url = "https://fullstack-exampleapp.herokuapp.com/data.json";
97+
String url = "https://studies.cs.helsinki.fi/exampleapp/data.json";
9898
List<Note> notes = request.get(url);
9999

100100
notes.forEach(m => {

src/content/2/zh/part2c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ xhttp.send()
112112
```java
113113
HTTPRequest request = new HTTPRequest();
114114

115-
String url = "https://fullstack-exampleapp.herokuapp.com/data.json";
115+
String url = "https://studies.cs.helsinki.fi/exampleapp/data.json";
116116
List<Note> notes = request.get(url);
117117

118118
notes.forEach(m => {

0 commit comments

Comments
 (0)