From cbf40ece25c3c07638008843583fc67ca192a867 Mon Sep 17 00:00:00 2001 From: Sean Fisher Date: Thu, 25 Jul 2024 17:55:19 -0400 Subject: [PATCH] Fix comment --- src/class-block-converter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class-block-converter.php b/src/class-block-converter.php index 698d455..37ad774 100644 --- a/src/class-block-converter.php +++ b/src/class-block-converter.php @@ -121,7 +121,7 @@ public function __call( $name, $arguments ): ?Block { public function convert_with_children( DOMNode $node ): string { $children = ''; - // Recursively convert the children of the blockquote to blocks. + // Recursively convert the children of the node. foreach ( $node->childNodes as $child ) { $child_block = $this->{$child->nodeName}( $child );