Skip to content

Commit

Permalink
fixes typos (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
bacoords authored Sep 3, 2024
1 parent 7d31765 commit 05e0978
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,6 @@ Follow us:

[![image](https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.com/wordpressdotcom)

<!-- Later we can add deveopers newsletter -->
<!-- Later we can add developers newsletter -->

And while you’re at it, check out our [WordPress hosting solution for developers](https://wordpress.com/hosting) and [our agency program](https://wordpress.com/for-agencies/).
2 changes: 1 addition & 1 deletion includes/manager/src/register-cpt-settings-panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { registerPlugin } from '@wordpress/plugins';
import { CPTSettingsPanel } from './components/cpt-settings-panel';

export const registerCPTSettingsPanel = () => {
registerPlugin( 'create-content-model-cpt-settings-pannel', {
registerPlugin( 'create-content-model-cpt-settings-panel', {
render: CPTSettingsPanel,
} );
};
2 changes: 1 addition & 1 deletion includes/runtime/class-content-model-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function __construct( array $block, Content_Model $content_model = null )
$this->bindings = $metadata['bindings'] ?? array();

/**
* If not instanciated directly by a content model, do not register hooks.
* If not instantiated directly by a content model, do not register hooks.
*/
if ( ! $content_model ) {
return;
Expand Down
2 changes: 1 addition & 1 deletion includes/runtime/class-content-model-html-manipulator.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private function get_markup() {
* Swap the node's innerHTML with the given HTML.
*
* @param \DOMElement $node The HTML node.
* @param string $html The desired inner HMTL.
* @param string $html The desired inner HTML.
*
* @return void
*/
Expand Down

0 comments on commit 05e0978

Please sign in to comment.