Incorrect argument type documented for hmac function

The Post Office <noreply@postgresql.org>

From: PG Doc comments form <noreply@postgresql.org>
To: pgsql-docs@lists.postgresql.org
Cc: x.postgresqldocs@alanfairless.com
Date: 2018-08-05T04:27:52Z
Lists: pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/10/static/pgcrypto.html
Description:

This line in the document:

hmac(data bytea, key text, type text) returns bytea

Incorrectly lists the key as type text when it is also bytea.  The line
should read:

hmac(data bytea, key bytea, type text) returns bytea

Thank you!

Commits

  1. Doc: fix incorrectly stated argument list for pgcrypto's hmac() function.