From 6dff629ee78646c92739bf39927d9145906cd430 Mon Sep 17 00:00:00 2001 From: ikuy1203 <79366821+ikuy1203@users.noreply.github.com> Date: Mon, 20 Oct 2025 16:23:22 +0900 Subject: [PATCH] chore: fix typos in examples (#7166) Co-authored-by: Jay --- examples/postMultipartFormData/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/postMultipartFormData/index.html b/examples/postMultipartFormData/index.html index ac35060..6abce1d 100644 --- a/examples/postMultipartFormData/index.html +++ b/examples/postMultipartFormData/index.html @@ -34,8 +34,8 @@
- - + +
@@ -76,7 +76,7 @@ var someString = document.getElementById('someString').value; var someNumber = document.getElementById('someNumber').valueAsNumber; - var files = Array.from(document.getElementById('someSamllFile').files) + var files = Array.from(document.getElementById('someSmallFile').files) var nestedString = document.getElementById('nested.someString').value; var passAsFormData = document.querySelector('input[name="format"]:checked').value==="formData";