Translate #741 to dutch

This commit is contained in:
BennyDB 2022-09-30 14:05:42 +02:00 committed by GitHub
parent e4573e4e13
commit 813f67f1ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ of als je `async`/`await` gebruikt:
```swift
struct PlanetMiddleware: AsyncModelMiddleware {
func create(model: Planet, on db: Database, next: AnyModelResponder) async throws {
func create(model: Planet, on db: Database, next: AnyAsyncModelResponder) async throws {
// Het model kan hier worden gewijzigd voordat het wordt gemaakt.
model.name = model.name.capitalized()
try await next.create(model, on: db)