From cad5e7d479adf0c5b49ed80daab750da345466da Mon Sep 17 00:00:00 2001 From: Roy Oursler Date: Tue, 17 Oct 2017 10:15:07 -0700 Subject: [PATCH] ec: Fix doxygen comment format for gen_rs_matrix Change-Id: I505155b0d57576814d876cd2d3595e522e03c469 Signed-off-by: Roy Oursler --- include/erasure_code.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/erasure_code.h b/include/erasure_code.h index f66d838..e807c91 100644 --- a/include/erasure_code.h +++ b/include/erasure_code.h @@ -890,13 +890,13 @@ unsigned char gf_inv(unsigned char a); * for certain pairs m and k. If m and k satisfy one of the following * inequalities, no adjustment is required: * - * k <= 3 - * k = 4, m <= 25 - * k = 5, m <= 10 - * k <= 21, m-k = 4 - * m - k <= 3. + * - k <= 3 + * - k = 4, m <= 25 + * - k = 5, m <= 10 + * - k <= 21, m-k = 4 + * - m - k <= 3. * - * @param a [mxk] array to hold coefficients + * @param a [m x k] array to hold coefficients * @param m number of rows in matrix corresponding to srcs + parity. * @param k number of columns in matrix corresponding to srcs. * @returns none @@ -911,7 +911,7 @@ void gf_gen_rs_matrix(unsigned char *a, int m, int k); * is identity matrix I and lower portion is constructed as 1/(i + j) | i != j, * i:{0,k-1} j:{k,m-1}. Any sub-matrix of a Cauchy matrix should be invertable. * - * @param a [mxk] array to hold coefficients + * @param a [m x k] array to hold coefficients * @param m number of rows in matrix corresponding to srcs + parity. * @param k number of columns in matrix corresponding to srcs. * @returns none