mirror of
https://github.com/intel/isa-l.git
synced 2025-10-27 19:10:18 +01:00
Fix a handful of spelling mistakes and typos
There are quite a few spelling mistakes and typos in comments and user facing message literal strings as found using codespell. Fix these. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
This commit is contained in:
committed by
Tomasz Kantecki
parent
ffc16330d8
commit
1500db751d
@@ -61,7 +61,7 @@ void gf_gen_full_pb_cauchy_matrix(u8 * a, int m, int k)
|
||||
{
|
||||
int i, j, p = m - k;
|
||||
|
||||
// Identity matrix in top k x k to indicate a symetric code
|
||||
// Identity matrix in top k x k to indicate a symmetric code
|
||||
memset(a, 0, k * m);
|
||||
for (i = 0; i < k; i++)
|
||||
a[k * i + i] = 1;
|
||||
@@ -99,7 +99,7 @@ void gf_gen_full_pb_vand_matrix(u8 * a, int m, int k)
|
||||
int i, j, p = m - k;
|
||||
unsigned char q, gen = 1;
|
||||
|
||||
// Identity matrix in top k x k to indicate a symetric code
|
||||
// Identity matrix in top k x k to indicate a symmetric code
|
||||
memset(a, 0, k * m);
|
||||
for (i = 0; i < k; i++)
|
||||
a[k * i + i] = 1;
|
||||
|
||||
Reference in New Issue
Block a user