Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 26be51f

Browse files
committed
Correct typo in JSDoc block
1 parent 3056c79 commit 26be51f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/blocks/BlockHeadings/BlockHeadings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import React from 'react'
1111
* @author WebDevStudios
1212
* @param {object} props The component attributes as props.
1313
* @param {object} props.props The block attributes props from WordPress.
14-
* @return {Element} RichText component with heading content
14+
* @return {Element} RichText component with heading content.
1515
*/
1616
export default function BlockHeadings({props}) {
1717
const {anchor, align, className, content, level} = props

components/blocks/BlockParagraph/BlockParagraph.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import PropTypes from 'prop-types'
1010
* @author WebDevStudios
1111
* @param {object} props The component attributes as props.
1212
* @param {object} props.props The block attributes props from WordPress.
13-
* @return {Element} RichText component with paragraph content
13+
* @return {Element} RichText component with paragraph content.
1414
*/
1515
export default function BlockParagraph({props}) {
1616
const {className, align, anchor, content} = props

0 commit comments

Comments
 (0)