From: Mark Wooding Date: Thu, 26 May 2016 08:26:09 +0000 (+0100) Subject: algorithms.c: Fix docstring for `GCHash.hashsz'. X-Git-Tag: 1.2.0~50 X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/commitdiff_plain/77f2f48ef941f17978c7fce1468885bc8c89969a?hp=828b13882f35b28275cf4062296b0419e0f0a7d1 algorithms.c: Fix docstring for `GCHash.hashsz'. --- diff --git a/algorithms.c b/algorithms.c index 60cfd58..06fdc32 100644 --- a/algorithms.c +++ b/algorithms.c @@ -787,7 +787,7 @@ static PyObject *ghmeth_done(PyObject *me, PyObject *arg) static PyGetSetDef gchash_pygetset[] = { #define GETSETNAME(op, name) gch##op##_##name GET (bufsz, "CH.bufsz -> hash buffer size, or zero") - GET (hashsz, "CH.blksz -> hash output size") + GET (hashsz, "CH.hashsz -> hash output size") GET (name, "CH.name -> name of this kind of hash") #undef GETSETNAME { 0 }