Skip to content

Commit 7f737ad

Browse files
committed
Fix para tag in build/gen_stub.php
[ci skip] <variablelist> is not valid within <simpara>, this should use <para>. Regressed in 32789c0.
1 parent 7f5a888 commit 7f737ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/gen_stub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1813,7 +1813,7 @@ private function getParameterSection(DOMDocument $doc): DOMElement {
18131813
$parametersRefSec->appendChild($noParamEntity);
18141814
return $parametersRefSec;
18151815
} else {
1816-
$parametersPara = $doc->createElement('simpara');
1816+
$parametersPara = $doc->createElement('para');
18171817
$parametersRefSec->appendChild($parametersPara);
18181818

18191819
$parametersPara->appendChild(new DOMText("\n "));

0 commit comments

Comments
 (0)