Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/durable-execution/practice/Web/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
["fr"] = new() { ["hello"] = "bonjour", ["goodbye"] = "au revoir", ["thanks"] = "merci", },
["lv"] = new() { ["hello"] = "sveiks", ["goodbye"] = "ardievu", ["thanks"] = "paldies", },
["mi"] = new() { ["hello"] = "kia ora", ["goodbye"] = "poroporoaki", ["thanks"] = "whakawhetai koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem", },
["tr"] = new() { ["hello"] = "merhaba", ["goodbye"] = "güle güle", ["thanks"] = "teşekkür ederim", },
["zu"] = new() { ["hello"] = "hamba kahle", ["goodbye"] = "sawubona", ["thanks"] = "ngiyabonga", },
};
Expand Down Expand Up @@ -54,4 +54,4 @@
return Results.Json(new { translation });
});

app.Run();
app.Run();
4 changes: 2 additions & 2 deletions exercises/durable-execution/solution/Web/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
["fr"] = new() { ["hello"] = "bonjour", ["goodbye"] = "au revoir", ["thanks"] = "merci", },
["lv"] = new() { ["hello"] = "sveiks", ["goodbye"] = "ardievu", ["thanks"] = "paldies", },
["mi"] = new() { ["hello"] = "kia ora", ["goodbye"] = "poroporoaki", ["thanks"] = "whakawhetai koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem", },
["tr"] = new() { ["hello"] = "merhaba", ["goodbye"] = "güle güle", ["thanks"] = "teşekkür ederim", },
["zu"] = new() { ["hello"] = "hamba kahle", ["goodbye"] = "sawubona", ["thanks"] = "ngiyabonga", },
};
Expand Down Expand Up @@ -54,4 +54,4 @@
return Results.Json(new { translation });
});

app.Run();
app.Run();
4 changes: 2 additions & 2 deletions exercises/testing-code/practice/Web/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
["fr"] = new() { ["hello"] = "bonjour", ["goodbye"] = "au revoir", ["thanks"] = "merci", },
["lv"] = new() { ["hello"] = "sveiks", ["goodbye"] = "ardievu", ["thanks"] = "paldies", },
["mi"] = new() { ["hello"] = "kia ora", ["goodbye"] = "poroporoaki", ["thanks"] = "whakawhetai koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem", },
["tr"] = new() { ["hello"] = "merhaba", ["goodbye"] = "güle güle", ["thanks"] = "teşekkür ederim", },
["zu"] = new() { ["hello"] = "hamba kahle", ["goodbye"] = "sawubona", ["thanks"] = "ngiyabonga", },
};
Expand Down Expand Up @@ -54,4 +54,4 @@
return Results.Json(new { translation });
});

app.Run();
app.Run();
4 changes: 2 additions & 2 deletions exercises/testing-code/solution/Web/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
["fr"] = new() { ["hello"] = "bonjour", ["goodbye"] = "au revoir", ["thanks"] = "merci", },
["lv"] = new() { ["hello"] = "sveiks", ["goodbye"] = "ardievu", ["thanks"] = "paldies", },
["mi"] = new() { ["hello"] = "kia ora", ["goodbye"] = "poroporoaki", ["thanks"] = "whakawhetai koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem", },
["tr"] = new() { ["hello"] = "merhaba", ["goodbye"] = "güle güle", ["thanks"] = "teşekkür ederim", },
["zu"] = new() { ["hello"] = "hamba kahle", ["goodbye"] = "sawubona", ["thanks"] = "ngiyabonga", },
};
Expand Down Expand Up @@ -54,4 +54,4 @@
return Results.Json(new { translation });
});

app.Run();
app.Run();
4 changes: 2 additions & 2 deletions samples/using-records/Web/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
["fr"] = new() { ["hello"] = "bonjour", ["goodbye"] = "au revoir", ["thanks"] = "merci", },
["lv"] = new() { ["hello"] = "sveiks", ["goodbye"] = "ardievu", ["thanks"] = "paldies", },
["mi"] = new() { ["hello"] = "kia ora", ["goodbye"] = "poroporoaki", ["thanks"] = "whakawhetai koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem koe", },
["sk"] = new() { ["hello"] = "ahoj", ["goodbye"] = "zbohom", ["thanks"] = "ďakujem", },
["tr"] = new() { ["hello"] = "merhaba", ["goodbye"] = "güle güle", ["thanks"] = "teşekkür ederim", },
["zu"] = new() { ["hello"] = "hamba kahle", ["goodbye"] = "sawubona", ["thanks"] = "ngiyabonga", },
};
Expand All @@ -50,4 +50,4 @@
return Results.Json(new { translation });
});

app.Run();
app.Run();
Loading