From e72cf5464e40210eef03429257f659a2a19dc2e3 Mon Sep 17 00:00:00 2001 From: shail-mehta Date: Sat, 8 Jun 2024 22:28:56 +0530 Subject: [PATCH] Several typo correction in documentations --- docs/contributors/folder-structure.md | 2 +- docs/reference-guides/slotfills/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributors/folder-structure.md b/docs/contributors/folder-structure.md index cbad182a58f44..e20ba81708a06 100644 --- a/docs/contributors/folder-structure.md +++ b/docs/contributors/folder-structure.md @@ -76,7 +76,7 @@ The following snippet explains how the Gutenberg repository is structured omitti │ Set of documentation pages composing the [Block editor handbook](https://developer.wordpress.org/block-editor/). │ ├── platform-docs - │ Documentation website targetted to non WordPress developpers + │ Documentation website targeted to non WordPress developers │ using Gutenberg in their own applications. │ Deployed on [https://wordpress.org/gutenberg-framework/](https://wordpress.org/gutenberg-framework/). │ diff --git a/docs/reference-guides/slotfills/README.md b/docs/reference-guides/slotfills/README.md index ea324f71b25e8..8b56ed4ce98b4 100644 --- a/docs/reference-guides/slotfills/README.md +++ b/docs/reference-guides/slotfills/README.md @@ -68,7 +68,7 @@ See [core code](https://github.com/WordPress/gutenberg/tree/HEAD/packages/editor ```js export default function PostSummary( { onActionPerformed } ) { const { isRemovedPostStatusPanel } = useSelect( ( select ) => { - // We use isEditorPanelRemoved to hide the panel if it was programatically removed. We do + // We use isEditorPanelRemoved to hide the panel if it was programmatically removed. We do // not use isEditorPanelEnabled since this panel should not be disabled through the UI. const { isEditorPanelRemoved, getCurrentPostType } = select( editorStore );