1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Fix some documentation typos and improve a comment

This commit is contained in:
Manuel Pégourié-Gonnard
2018-10-23 10:41:11 +02:00
parent ca29fdf569
commit a966fdea72
2 changed files with 7 additions and 7 deletions

View File

@ -1610,9 +1610,9 @@ add:
norm_add:
#endif
/*
* Normalize final elements in T. Even though there are no holes now,
* we still need the auxiliary array for homogeneity with last time.
* Also, skip T[0] which is already normalised, being a copy of P.
* Normalize final elements in T. Even though there are no holes now, we
* still need the auxiliary array for homogeneity with the previous
* call. Also, skip T[0] which is already normalised, being a copy of P.
*/
for( j = 0; j + 1 < T_size; j++ )
TT[j] = T + j + 1;