Fix table/set type naming in summary table of generated script docs

This commit is contained in:
Jon Siwek 2011-04-07 16:19:09 -05:00
parent cb68371006
commit c81b83475a

View file

@ -622,6 +622,9 @@ void ID::DescribeReSTShort(ODesc* d) const
d->Add(":bro:type:`");
if ( ! is_type && type->GetTypeID() )
d->Add(type->GetTypeID());
else
if ( type->IsSet() )
d->Add("set");
else
d->Add(type_name(type->Tag()));
d->Add("`");