Well, depending on the documentation system you use, you can wrap the type name in special syntax and put it outside of it. For example:
.NET XML Comments
Get a list of <see cref="Thing"/>s from somewhere.
doxygen C / C ++ comments
Get a list of \link Thing \endlink s from somewhere.
Not defined 100% according to the doxygen variant, but it should be something like this.
And if you are not using a specific documentation system and therefore have no special comments, I would do something like:
Get a list of [Thing]s from somewhere.
Or you can use () or {}, depending on your preference ...
Jake petroules
source share