mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
Fix table/set type naming in summary table of generated script docs
This commit is contained in:
parent
cb68371006
commit
c81b83475a
1 changed files with 4 additions and 1 deletions
|
@ -623,7 +623,10 @@ void ID::DescribeReSTShort(ODesc* d) const
|
||||||
if ( ! is_type && type->GetTypeID() )
|
if ( ! is_type && type->GetTypeID() )
|
||||||
d->Add(type->GetTypeID());
|
d->Add(type->GetTypeID());
|
||||||
else
|
else
|
||||||
d->Add(type_name(type->Tag()));
|
if ( type->IsSet() )
|
||||||
|
d->Add("set");
|
||||||
|
else
|
||||||
|
d->Add(type_name(type->Tag()));
|
||||||
d->Add("`");
|
d->Add("`");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue