Paco Soberón
unread,Mar 20, 2013, 7:55:41 AM3/20/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ceylo...@googlegroups.com
Hi,
I've noticed that generated documentation tries to "normalize" syntactic abbrevations, but when doing so, it includes default type parameters. For example, the following source code:
shared Integer count({Boolean*} values) {
...
}
generates this documentation:
shared Integer count(Iterable<Boolean,Null> values)
Wouldn't it be clearer if it leaves out the default type parameter? I think this would be more readable:
shared Integer count(Iterable<Boolean> values)
Regards.