Minor change to zmq_curve_keypair doc

This commit is contained in:
KennethWilke 2014-03-06 15:18:42 -06:00
parent bf08114be4
commit 2bcf860e77

View File

@ -38,7 +38,7 @@ EXAMPLE
----
char public_key [41];
char secret_key [41];
int rc = crypto_box_keypair (public_key, secret_key);
int rc = zmq_curve_keypair (public_key, secret_key);
assert (rc == 0);
----