Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in custom-block-editor/tutorial.md #26799

Merged
merged 1 commit into from
Nov 7, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Our editor will have the following features:

* Ability to add and edit all Core Blocks.
* Familiar visual styles and main/sidebar layout.
* _Basic_ block persistance between page reloads.
* _Basic_ block persistence between page reloads.

With that in mind, let's start taking our first steps towards building this.

Expand Down Expand Up @@ -131,7 +131,7 @@ With our target HTML in place we can now enqueue some JavaScript (as well as som

To do this we hook into `admin_enqueue_scripts`.

First, we meed to make sure we only run our custom code on our own admin page, so at the top of our callback function let's exit early if the page doesn't match our page's identifier:
First, we need to make sure we only run our custom code on our own admin page, so at the top of our callback function let's exit early if the page doesn't match our page's identifier:

```php
// init.php
Expand Down