diff --git a/src/view/05_forms.md b/src/view/05_forms.md index 7de39f1..404dbe7 100644 --- a/src/view/05_forms.md +++ b/src/view/05_forms.md @@ -49,7 +49,7 @@ view! { > > One odd quirk is that there is a distinction between HTML attributes and DOM element properties, i.e., between something called an “attribute” which is parsed from HTML and can be set on a DOM element with `.setAttribute()`, and something called a “property” which is a field of the JavaScript class representation of that parsed HTML element. > -> In the case of an ``, setting the `value` _attribute_ is defined as setting the initial value for the input, and setting `value` _property_ sets its current value. It maybe easiest to understand this by opening `about:blank` and running the following JavaScript in the browser console, line by line: +> In the case of an ``, setting the `value` _attribute_ is defined as setting the initial value for the input, and setting `value` _property_ sets its current value. It may be easiest to understand this by opening `about:blank` and running the following JavaScript in the browser console, line by line: > > ```js > // create an input and append it to the DOM diff --git a/src/view/07_errors.md b/src/view/07_errors.md index e26ea73..672c017 100644 --- a/src/view/07_errors.md +++ b/src/view/07_errors.md @@ -69,7 +69,7 @@ fn NumericInput() -> impl IntoView {

"Error Handling"