docs: fix simple typo, dependecy -> dependency

There is a small typo in src/group_impl.h.

Should read `dependency` rather than `dependecy`.
This commit is contained in:
Tim Gates 2020-12-08 21:45:13 +11:00
parent 2d9e7175c6
commit 18aadf9d28
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05

View File

@ -674,7 +674,7 @@ static int secp256k1_ge_is_in_correct_subgroup(const secp256k1_ge* ge) {
secp256k1_gej out;
int i;
/* A very simple EC multiplication ladder that avoids a dependecy on ecmult. */
/* A very simple EC multiplication ladder that avoids a dependency on ecmult. */
secp256k1_gej_set_infinity(&out);
for (i = 0; i < 32; ++i) {
secp256k1_gej_double_var(&out, &out, NULL);