Skip to content

Commit

Permalink
Use apostrophe instead of single-quote character. (#11710)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimadin authored and mcsf committed Nov 12, 2018
1 parent c2852c2 commit 992a43c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/block-library/src/missing/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function MissingBlockWarning( { attributes, convertToHTML } ) {
let messageHTML;
if ( hasContent && hasHTMLBlock ) {
messageHTML = sprintf(
__( 'Your site doesn\'t include support for the "%s" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.' ),
__( 'Your site doesnt include support for the "%s" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.' ),
originalName
);
actions.push(
Expand All @@ -27,7 +27,7 @@ function MissingBlockWarning( { attributes, convertToHTML } ) {
);
} else {
messageHTML = sprintf(
__( 'Your site doesn\'t include support for the "%s" block. You can leave this block intact or remove it entirely.' ),
__( 'Your site doesnt include support for the "%s" block. You can leave this block intact or remove it entirely.' ),
originalName
);
}
Expand Down Expand Up @@ -59,7 +59,7 @@ export const settings = {
name,
category: 'common',
title: __( 'Unrecognized Block' ),
description: __( 'Your site doesn\'t include support for this block.' ),
description: __( 'Your site doesnt include support for this block.' ),

supports: {
className: false,
Expand Down

0 comments on commit 992a43c

Please sign in to comment.