Skip to content

Commit 0c35e74

Browse files
committed
Fix broken link in part2c
1 parent 2a16959 commit 0c35e74

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
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/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)