summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTom Lane2018-08-05 17:03:42 +0000
committerTom Lane2018-08-05 17:04:36 +0000
commit716f645d12aabcd5605d4d9092be2a13b4481729 (patch)
tree3643eed2d3c38c30203e90262e15277d24dc2662 /doc/src
parent69599cc49e7cc48f180e49322aea00c1ec634388 (diff)
Doc: fix incorrectly stated argument list for pgcrypto's hmac() function.
The bytea variant takes (bytea, bytea, text). Per unsigned report. Discussion: https://postgr.es/m/153344327294.1404.654155870612982042@wrigleys.postgresql.org
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/pgcrypto.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/pgcrypto.sgml b/doc/src/sgml/pgcrypto.sgml
index 59f05e177ca..90d541c9cee 100644
--- a/doc/src/sgml/pgcrypto.sgml
+++ b/doc/src/sgml/pgcrypto.sgml
@@ -63,7 +63,7 @@ $$ LANGUAGE SQL STRICT IMMUTABLE;
<synopsis>
hmac(data text, key text, type text) returns bytea
-hmac(data bytea, key text, type text) returns bytea
+hmac(data bytea, key bytea, type text) returns bytea
</synopsis>
<para>