Merge pull request #33 from Jimmy99/patch-2

Update README.md
This commit is contained in:
Mike Stefanello 2023-05-25 15:55:50 -04:00 committed by GitHub
commit f688bff1d2
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)