Kevin Grittner wrote:
> Comment style seems to be defined here:
>
> http://developer.postgresql.org/pgdocs/postgres/source-format.html
>
> as being:
>
> /*
> * comment text begins here
> * and continues here
> */
>
> You have these formats in your patch:
>
> /* comment text begins here
> * and continues here
> */
>
> /* comment text begins here
> and continues here */
>
> /* One line comment like this. */
>
> That last one is actually pretty common in PostgreSQL source, so I'm
> not sure that its omission from the style page isn't accidental.
>
>
>
The style doc talks about a standard for multi-line comments - it
doesn't forbid single line comments.
cheers
andrew