Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oandregal committed Jul 5, 2021
1 parent 16f2bc1 commit eb1881f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/block-supports/typography.php
Expand Up @@ -117,7 +117,7 @@ function gutenberg_apply_typography_support( $block_type, $block_attributes ) {
$font_family_slug = substr( $font_family_custom, $index_to_splice );
$classes[] = sprintf( 'has-%s-font-family', $font_family_slug );
} else {
$styles[] = sprintf( 'font-family: %s', $font_family_custom );
$styles[] = sprintf( 'font-family: %s;', $font_family_custom );
}
}
}
Expand Down

0 comments on commit eb1881f

Please sign in to comment.