remove line-breaks at the end of code samples (#251)

pull/253/head
Tim Deschryver 2024-04-02 21:06:14 +02:00 committed by GitHub
parent 7a675d8e8a
commit e5d797f355
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 3 deletions

View File

@ -23,7 +23,6 @@ app.MapGet("/todos/{id}", async (int Id, TodoDb Db) =>
// </snippet_id>
// Remaining code removed for brevity.
// </snippet_top>
// Avoid reading the incoming file stream directly into memory all at once.
@ -62,7 +61,6 @@ app.MapPost("/ap/todos", async ([AsParameters] NewTodoRequest request, TodoDb db
});
// Remaining code removed for brevity.
// </snippet_post_put_delete_as_parameters>
// <snippet_post_put_delete>
@ -90,7 +88,6 @@ app.MapPost("/todos", async ([FromForm] string name,
});
// Remaining code removed for brevity.
// </snippet_post_put_delete>
app.UseStaticFiles();