Is it possible to request a code review?

Jonathan M Davis newsgroup.d at jmdavisprog.com
Wed Dec 13 07:30:55 UTC 2017


On Wednesday, December 13, 2017 06:14:04 bauss via Digitalmars-d wrote:
> Documentation can be done like this for multiline:
>
> /**
> * ...
> * ...
> * etc.
> */
>
> Instead of:
>
> /// ...
> /// ...
> /// etc.

You can also do

/**
  ...
  ...
  etc.
*/

or

/++
  ...
  ...
  etc.
+/

Personally, I always use the last one if the ddoc comment is multiple lines,
and I've never understood why anyone would want all those extra *'s on the
side.

- Jonathan M Davis



More information about the Digitalmars-d mailing list