From 295bb7a4cc144e6eca7f6ce06f073154cc53b2b6 Mon Sep 17 00:00:00 2001 From: terrablue <102580937+terrablue@users.noreply.github.com> Date: Sun, 28 Jan 2024 15:16:14 +0200 Subject: [PATCH] typos in blogpost --- docs/blog/release-028.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/blog/release-028.md b/docs/blog/release-028.md index 3e2b7f92..2c35dbd3 100644 --- a/docs/blog/release-028.md +++ b/docs/blog/release-028.md @@ -232,7 +232,7 @@ Your rendered web component will be accessible at http://localhost:6161/webc. ### Outlook -Our Web Components support is a rapidly evolving, and we rely on feedback for +Our Web Components support is rapidly evolving, and we rely on feedback for prioritizing work on it. In particular, we plan to extend the wrapper by offering an `unmounted` property for cleanup before removal from the DOM, as well as commonly used features in other frontends such as SSR and hydration. @@ -240,7 +240,7 @@ well as commonly used features in other frontends such as SSR and hydration. ## Uploading files This release introduces support for uploading files in HTML forms using -`enctype="multitype/form-data"`. Files uploaded this way will be available as +`enctype="multipart/form-data"`. Files uploaded this way will be available as `Blob` properties of the route function's `request.body`. ```html caption=components/file-upload.html