From a3c4ef85a3b9f2c9f4af6ed639aa6ea306fed206 Mon Sep 17 00:00:00 2001 From: Ghost-017 <31908292+Ghost-017@users.noreply.github.com> Date: Sun, 25 Nov 2018 18:33:01 +0800 Subject: [PATCH] Update article.md --- 2-ui/1-document/05-basic-dom-node-properties/article.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/2-ui/1-document/05-basic-dom-node-properties/article.md b/2-ui/1-document/05-basic-dom-node-properties/article.md index 85bca24b..eca02163 100644 --- a/2-ui/1-document/05-basic-dom-node-properties/article.md +++ b/2-ui/1-document/05-basic-dom-node-properties/article.md @@ -91,7 +91,7 @@ interface HTMLInputElement: HTMLElement { // here go properties and methods of elements *!* - // "DOMString" means that these properties are strings + // "DOMString" means that the value of these properties are strings */!* attribute DOMString accept; attribute DOMString alt; @@ -99,12 +99,12 @@ interface HTMLInputElement: HTMLElement { attribute DOMString value; *!* - // boolean property (true/false) + // boolean value property (true/false) attribute boolean autofocus; */!* ... *!* - // now the method: "void" means that that returns no value + // now the method: "void" means that the method returns no value */!* void select(); ...