From 048a380462548ea41cf0e2d5981042b776173d31 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 9 Jun 2021 10:16:54 -0700 Subject: [PATCH] docs(input): fixed wrong example time value (#6988) --- docs/src/input.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/input.md b/docs/src/input.md index 6c14ca76ec..0688951593 100644 --- a/docs/src/input.md +++ b/docs/src/input.md @@ -17,7 +17,7 @@ await page.fill('#name', 'Peter'); await page.fill('#date', '2020-02-02'); // Time input -await page.fill('#time', '13-15'); +await page.fill('#time', '13:15'); // Local datetime input await page.fill('#local', '2020-03-02T05:15'); @@ -51,7 +51,7 @@ await page.fill('#name', 'Peter') await page.fill('#date', '2020-02-02') # Time input -await page.fill('#time', '13-15') +await page.fill('#time', '13:15') # Local datetime input await page.fill('#local', '2020-03-02T05:15') @@ -68,7 +68,7 @@ page.fill('#name', 'Peter') page.fill('#date', '2020-02-02') # Time input -page.fill('#time', '13-15') +page.fill('#time', '13:15') # Local datetime input page.fill('#local', '2020-03-02T05:15')