From 64e9a6fcf41139a44d6dae5882f0a2e09a9267d5 Mon Sep 17 00:00:00 2001 From: Vicente Canales Date: Mon, 3 Aug 2020 14:57:55 -0400 Subject: [PATCH 1/3] Fix typo --- .../developers/tutorials/create-block/block-anatomy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/designers-developers/developers/tutorials/create-block/block-anatomy.md b/docs/designers-developers/developers/tutorials/create-block/block-anatomy.md index 12df3209c72e04..9bd6a038ca29f4 100644 --- a/docs/designers-developers/developers/tutorials/create-block/block-anatomy.md +++ b/docs/designers-developers/developers/tutorials/create-block/block-anatomy.md @@ -2,7 +2,7 @@ At its simplest, a block in the WordPress block editor is a JavaScript object with a specific set of properties. -**Note:** Block development uses ESNext syntax, this refers to the latest JavaScript standard. If this is unfamiliar, I recommend reviewing the [ESNext synatx documentation](/docs/designers-developers/developers/tutorials/javascript/esnext-js.md) to familiarize yourself with the newer syntax used in modern JavaScript development. +**Note:** Block development uses ESNext syntax, this refers to the latest JavaScript standard. If this is unfamiliar, I recommend reviewing the [ESNext syntax documentation](/docs/designers-developers/developers/tutorials/javascript/esnext-js.md) to familiarize yourself with the newer syntax used in modern JavaScript development. Here is the complete code for registering a block: From 4028c042220304fc66364058865ae3f41c293ceb Mon Sep 17 00:00:00 2001 From: Vicente Canales Date: Mon, 3 Aug 2020 14:59:24 -0400 Subject: [PATCH 2/3] Use plural 1st person instead of singular --- .../developers/tutorials/create-block/block-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/designers-developers/developers/tutorials/create-block/block-code.md b/docs/designers-developers/developers/tutorials/create-block/block-code.md index 88c3b5e9497704..d97ccb0863d77b 100644 --- a/docs/designers-developers/developers/tutorials/create-block/block-code.md +++ b/docs/designers-developers/developers/tutorials/create-block/block-code.md @@ -1,6 +1,6 @@ # Code Implementation -The basic block is in place, the next step is to add styles to the block. Feel free to style and adjust for your own preference, the main lesson is showing how to create and load external resources. For this example I'm going to load the colorized gilbert font from [Type with Pride](https://www.typewithpride.com/). +The basic block is in place, the next step is to add styles to the block. Feel free to style and adjust for your own preference, the main lesson is showing how to create and load external resources. For this example we're going to load the colorized gilbert font from [Type with Pride](https://www.typewithpride.com/). Note: The color may not work with all browsers until they support the proper color font properly, but the font itself still loads and styles. See [colorfonts.wtf](https://www.colorfonts.wtf/) for browser support and details on color fonts. From e96a49f1b0215bf0e73c3200d44204ae7f5bbc36 Mon Sep 17 00:00:00 2001 From: Vicente Canales Date: Mon, 3 Aug 2020 15:01:26 -0400 Subject: [PATCH 3/3] Reword Gutenberg's purpose I found it a bit easier to parse this way. Kind of a stylistic choice, except for the addition of "as possible" to the phrase. --- .../developers/tutorials/create-block/author-experience.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/designers-developers/developers/tutorials/create-block/author-experience.md b/docs/designers-developers/developers/tutorials/create-block/author-experience.md index 4f4ff032810a94..2209db5f895a21 100644 --- a/docs/designers-developers/developers/tutorials/create-block/author-experience.md +++ b/docs/designers-developers/developers/tutorials/create-block/author-experience.md @@ -2,7 +2,7 @@ ## Background -One of the primary tenets of Gutenberg is as a WYSIWYG editor, what you see in the editor, should be as close to what you get when published. Keep this in mind when building blocks. +One of the primary tenets of Gutenberg as a WYSIWYG editor is that what you see in the editor should be as close as possible to what you get when published. Keep this in mind when building blocks. ## Placeholder