Update README.md

Fix typo
This commit is contained in:
Dimitri Balios 2023-05-25 21:50:20 +02:00 committed by GitHub
parent 1f42ce7db8
commit 575bf805e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -638,7 +638,7 @@ Form submission processing is made extremely simple by leveraging functionality
Using the example form above, these are the steps you would take within the _POST_ callback for your route:
Start by storing a pointer to the form in the conetxt so that your _GET_ callback can access the form values, which will be showed at the end:
Start by storing a pointer to the form in the context so that your _GET_ callback can access the form values, which will be showed at the end:
```go
var form ContactForm
ctx.Set(context.FormKey, &form)