From f442776d70287f5ab637a7466c99774fe7644919 Mon Sep 17 00:00:00 2001 From: golemarms Date: Mon, 1 Mar 2021 23:23:49 +0800 Subject: [PATCH] Fix typo in text input example (#2778) --- files/en-us/web/html/element/input/text/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/html/element/input/text/index.html b/files/en-us/web/html/element/input/text/index.html index 6f5ea20909f5b2d..4a7005209c4d578 100644 --- a/files/en-us/web/html/element/input/text/index.html +++ b/files/en-us/web/html/element/input/text/index.html @@ -239,7 +239,7 @@

Basic example

{{EmbedLiveSample("Basic_example", 600, 50)}}

-

When submitted, the data name/value pair sent to the server will be uname=Chris (if "Chris" was entered as the input value before submission). You must remember to include {{htmlattrxref("name", "input")}} attribute on the {{HTMLElement("input")}} element, otherwise the text field's value won't be included with the submitted data.

+

When submitted, the data name/value pair sent to the server will be name=Chris (if "Chris" was entered as the input value before submission). You must remember to include {{htmlattrxref("name", "input")}} attribute on the {{HTMLElement("input")}} element, otherwise the text field's value won't be included with the submitted data.

Setting placeholders