From adab443ae3061a4df01312896611af851e12eb1a Mon Sep 17 00:00:00 2001 From: Raphael <48417580+RapTho@users.noreply.github.com> Date: Mon, 7 Dec 2020 15:30:26 +0100 Subject: [PATCH 1/2] Fixed small typo 2-ui / 2-events / 5-dispatch-events In subchapter "Event constructor": first word use "Built-in" instead of "Build-in" --- 2-ui/2-events/05-dispatch-events/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/2-events/05-dispatch-events/article.md b/2-ui/2-events/05-dispatch-events/article.md index 930c51fc..b38719f8 100644 --- a/2-ui/2-events/05-dispatch-events/article.md +++ b/2-ui/2-events/05-dispatch-events/article.md @@ -8,7 +8,7 @@ We can generate not only completely new events, that we invent for our own purpo ## Event constructor -Build-in event classes form a hierarchy, similar to DOM element classes. The root is the built-in [Event](http://www.w3.org/TR/dom/#event) class. +Built-in event classes form a hierarchy, similar to DOM element classes. The root is the built-in [Event](http://www.w3.org/TR/dom/#event) class. We can create `Event` objects like this: From eb5e7da359e8ae74ad02c0e069d1e20f670724c7 Mon Sep 17 00:00:00 2001 From: Raphael <48417580+RapTho@users.noreply.github.com> Date: Sun, 13 Dec 2020 12:33:00 +0100 Subject: [PATCH 2/2] Fixed typo --- 5-network/02-formdata/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/02-formdata/article.md b/5-network/02-formdata/article.md index 2a2cf684..a3d92452 100644 --- a/5-network/02-formdata/article.md +++ b/5-network/02-formdata/article.md @@ -47,7 +47,7 @@ As you can see, that's almost one-liner: ``` -In this example, the server code is not presented, as it's beyound our scope. The server accepts the POST request and replies "User saved". +In this example, the server code is not presented, as it's beyond our scope. The server accepts the POST request and replies "User saved". ## FormData Methods