From 8219f75a4c2f795beba9010b6543c522d15aeb5d Mon Sep 17 00:00:00 2001 From: Asbed B <98722140+asbedb@users.noreply.github.com> Date: Tue, 18 Feb 2025 21:06:07 +1100 Subject: [PATCH] fix(curriculum): typo in transcript (#58864) --- .../6733d3ab69e94b7df7ee91b0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/lecture-understanding-form-validation/6733d3ab69e94b7df7ee91b0.md b/curriculum/challenges/english/25-front-end-development/lecture-understanding-form-validation/6733d3ab69e94b7df7ee91b0.md index 3ff3915c279..c3019d58b11 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-understanding-form-validation/6733d3ab69e94b7df7ee91b0.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-understanding-form-validation/6733d3ab69e94b7df7ee91b0.md @@ -75,7 +75,7 @@ But maybe you don't want to send the data as a URL-encoded form payload? The `form` element accepts an `enctype` attribute, which represents the encoding type to use for the data. -This attribute only accepts three values: `application/x-www-form-urlencoded` (which is the default, sending the data as a URL-encoded form body), `text/plain` (which sends the data in plaintext form, in `name=value` pairs separated by new lines), or `mulitpart/form-data`, which is specifically for handling forms with a file upload. +This attribute only accepts three values: `application/x-www-form-urlencoded` (which is the default, sending the data as a URL-encoded form body), `text/plain` (which sends the data in plaintext form, in `name=value` pairs separated by new lines), or `multipart/form-data`, which is specifically for handling forms with a file upload. In this video, you've learned the basics of form submissions. In future videos, we'll dive deeper into working with forms and how they interact with the server.