Fixing typo

This commit is contained in:
Pavel Shevaev 2023-06-02 15:50:57 +03:00
parent 796a273124
commit d4ed9a50b1
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ function bhl_type(\mtgType $type = null)
}
else if($type instanceof \mtgMetaFunc)
{
$ret_type = $type->getReturnType() ? bhl_gen_type($type->getReturnType()) : 'void';
$ret_type = $type->getReturnType() ? bhl_type($type->getReturnType()) : 'void';
$str = "";
$str .= "func $ret_type(";