From 3aad9e5efbf99fc9eaed1ba109db3f87be8adc68 Mon Sep 17 00:00:00 2001 From: Dimitri Balios Date: Thu, 25 May 2023 21:50:20 +0200 Subject: [PATCH] Update README.md Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 48ed70b..bc75b0e 100644 --- a/README.md +++ b/README.md @@ -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)