Skip to content

Commit de5b223

Browse files
committed
examples: add missing dots in paragraphs about context randomization
1 parent 0b3dfb7 commit de5b223

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/ecdh.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ int main(void) {
3737
return EXIT_FAILURE;
3838
}
3939
/* Randomizing the context is recommended to protect against side-channel
40-
* leakage See `secp256k1_context_randomize` in secp256k1.h for more
40+
* leakage. See `secp256k1_context_randomize` in secp256k1.h for more
4141
* information about it. This should never fail. */
4242
return_val = secp256k1_context_randomize(ctx, randomize);
4343
assert(return_val);

examples/ecdsa.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ int main(void) {
4444
return EXIT_FAILURE;
4545
}
4646
/* Randomizing the context is recommended to protect against side-channel
47-
* leakage See `secp256k1_context_randomize` in secp256k1.h for more
47+
* leakage. See `secp256k1_context_randomize` in secp256k1.h for more
4848
* information about it. This should never fail. */
4949
return_val = secp256k1_context_randomize(ctx, randomize);
5050
assert(return_val);

examples/schnorr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ int main(void) {
3838
return EXIT_FAILURE;
3939
}
4040
/* Randomizing the context is recommended to protect against side-channel
41-
* leakage See `secp256k1_context_randomize` in secp256k1.h for more
41+
* leakage. See `secp256k1_context_randomize` in secp256k1.h for more
4242
* information about it. This should never fail. */
4343
return_val = secp256k1_context_randomize(ctx, randomize);
4444
assert(return_val);

0 commit comments

Comments
 (0)