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

Fix typo: Remove extra 'the' #7677

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/data/core-blocks.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# **core/blocks**: Block Types Data

## Selectors
## Selectors

### getBlockType

Expand Down
6 changes: 3 additions & 3 deletions docs/data/core-edit-post.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# **core/edit-post**: The Editor's UI Data

## Selectors
## Selectors

### getEditorMode

Expand Down Expand Up @@ -110,7 +110,7 @@ Is active.

### isPluginItemPinned

Returns true if the the plugin item is pinned to the header.
Returns true if the plugin item is pinned to the header.
When the value is not set it defaults to true.

*Parameters*
Expand Down Expand Up @@ -149,7 +149,7 @@ State of meta box at specified location.

### isSavingMetaBoxes

Returns true if the the Meta Boxes are being saved.
Returns true if the Meta Boxes are being saved.

*Parameters*

Expand Down
4 changes: 3 additions & 1 deletion docs/data/core-editor.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# **core/editor**: The Editor's Data

## Selectors
## Selectors

### hasEditorUndo

Expand Down Expand Up @@ -784,10 +784,12 @@ Block Template
### getTemplateLock

Returns the defined block template lock
in the context of a given root block or in the global context.

*Parameters*

* state: null
* rootUID: Block UID.

*Returns*

Expand Down
2 changes: 1 addition & 1 deletion docs/data/core-nux.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# **core/nux**: The NUX (New User Experience) module Data

## Selectors
## Selectors

### isTipVisible

Expand Down
2 changes: 1 addition & 1 deletion docs/data/core-viewport.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# **core/viewport**: The viewport module Data

## Selectors
## Selectors

### isViewportMatch

Expand Down
2 changes: 1 addition & 1 deletion docs/data/core.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# **core**: WordPress Core Data

## Selectors
## Selectors

### getTerms

Expand Down
2 changes: 1 addition & 1 deletion docs/tool/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function generateNamespaceDocs( parsedNamespace ) {
return [
`# **${ parsedNamespace.name }**: ${ parsedNamespace.title }`,
'',
'## Selectors ',
'## Selectors',
'',
( parsedNamespace.selectors.map( generateFunctionDocs ) ).join( '\n\n' ),
'',
Expand Down
4 changes: 2 additions & 2 deletions edit-post/store/selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export function isFeatureActive( state, feature ) {
}

/**
* Returns true if the the plugin item is pinned to the header.
* Returns true if the plugin item is pinned to the header.
* When the value is not set it defaults to true.
*
* @param {Object} state Global application state.
Expand Down Expand Up @@ -163,7 +163,7 @@ export const hasMetaBoxes = createSelector(
);

/**
* Returns true if the the Meta Boxes are being saved.
* Returns true if the Meta Boxes are being saved.
*
* @param {Object} state Global application state.
* @return {boolean} Whether the metaboxes are being saved.
Expand Down