1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Fix a batch of typos in comments and docs.

This commit is contained in:
Simon Tatham
2022-01-03 06:38:07 +00:00
parent f9d0557330
commit 4ecb40a60d
10 changed files with 11 additions and 11 deletions

View File

@ -266,7 +266,7 @@ static void argon2_internal(uint32_t p, uint32_t T, uint32_t m, uint32_t t,
* that in the initial slice on the first pass, we've already written
* values into the first two columns during the initial setup above. So
* 'jstart' indicates the starting index in each segment we process; it
* starts off as 2 so that we don't overwrite the inital setup, and then
* starts off as 2 so that we don't overwrite the initial setup, and then
* after the first slice is done, we set it to 0, and it stays there.
*
* d_mode indicates whether we're being data-dependent (true) or

View File

@ -1544,7 +1544,7 @@ mp_int *monty_export(MontyContext *mc, mp_int *x)
mp_int *monty_pow(MontyContext *mc, mp_int *base, mp_int *exponent)
{
/*
* Modular exponentation is done from the top down, using a
* Modular exponentiation is done from the top down, using a
* fixed-window technique.
*
* We have a table storing every power of the base from base^0 up