From dc818e11657a6536f6f148bdd2038b6bf1e2e060 Mon Sep 17 00:00:00 2001 From: Rishabh Jain Date: Sat, 26 Sep 2015 23:04:04 +0100 Subject: [PATCH] docs(input[time]): fixes a typo --- src/ng/directive/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index aa73a5f188cd..90b26f2dfb11 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -332,7 +332,7 @@ var inputType = { * * @description * Input with time validation and transformation. In browsers that do not yet support - * the HTML5 date input, a text element will be used. In that case, the text must be entered in a valid ISO-8601 + * the HTML5 time input, a text element will be used. In that case, the text must be entered in a valid ISO-8601 * local time format (HH:mm:ss), for example: `14:57:00`. Model must be a Date object. This binding will always output a * Date object to the model of January 1, 1970, or local date `new Date(1970, 0, 1, HH, mm, ss)`. *