Subject: | Minor doco bug in Synopsis section |
In the Synopsis section, the example code is
$snum{$obj_ID} = check_name( _gen_uniq_serial_num() );
which seems to imply that serial numbers are validated by check_name.
I think the example should be
$snum{$obj_ID} = check_snum( _gen_uniq_serial_num() );
or just
$snum{$obj_ID} = _gen_uniq_serial_num();