Merge pull request #911 from KennethWilke/master

Minor change to zmq_curve_keypair doc
This commit is contained in:
Pieter Hintjens 2014-03-06 23:16:05 +01:00
commit b63c5e5469

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);
----