Skip to content

Commit

Permalink
docs: fix simple typo, dependecy -> dependency
Browse files Browse the repository at this point in the history
There is a small typo in src/group_impl.h.

Should read `dependency` rather than `dependecy`.
  • Loading branch information
timgates42 committed Dec 8, 2020
1 parent 2d9e717 commit 18aadf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/group_impl.h
Expand Up @@ -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);
Expand Down

0 comments on commit 18aadf9

Please sign in to comment.