Skip to content

Commit

Permalink
fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dmsnell committed Aug 27, 2018
1 parent fc825d1 commit 07ffe45
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ function gutenberg_parse_blocks( $content ) {
);
}

/**
* Filter to allow plugins to replace the server-side block parser
*
* @since 3.7
*
* @param string $parser_class Name of block parser class
*/
/**
* Filter to allow plugins to replace the server-side block parser
*
* @since 3.7
*
* @param string $parser_class Name of block parser class
*/
$parser_class = apply_filters( 'block_parser_class', 'BDSP_Parser' );
$parser = new $parser_class();
$parser = new $parser_class();
return $parser->parse( $content );
}

Expand Down

0 comments on commit 07ffe45

Please sign in to comment.