diff --git a/src/PageSections/_Private/stringify_parameter.hack b/src/PageSections/_Private/stringify_parameter.hack index cb482b4..dbf53e9 100644 --- a/src/PageSections/_Private/stringify_parameter.hack +++ b/src/PageSections/_Private/stringify_parameter.hack @@ -21,6 +21,10 @@ function stringify_parameter( ): string { $s = ''; + if ($parameter->isInOut()) { + $s .= 'inout '; + } + $types = $docs['types'] ?? vec[]; if ($types) { $s .= Str\join($types, '|').' ';