From 2bcf860e77e2098699bbc36c1eb329e2e0da3ec7 Mon Sep 17 00:00:00 2001 From: KennethWilke Date: Thu, 6 Mar 2014 15:18:42 -0600 Subject: [PATCH] Minor change to zmq_curve_keypair doc --- doc/zmq_curve_keypair.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/zmq_curve_keypair.txt b/doc/zmq_curve_keypair.txt index aa714a52..82c13d6c 100644 --- a/doc/zmq_curve_keypair.txt +++ b/doc/zmq_curve_keypair.txt @@ -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); ----