From 630602b9af28eabeaa6ca5779edbc43e4e9e9f4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gi=C3=B9=20Marcer?= Date: Fri, 27 Mar 2020 23:45:14 +0100 Subject: [PATCH] ex-6: Language improvement in rl.c --- ex-6/rl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ex-6/rl.c b/ex-6/rl.c index 72cdb56..6e3427a 100644 --- a/ex-6/rl.c +++ b/ex-6/rl.c @@ -3,7 +3,7 @@ #include -/* `gsl_vector_convolv(a, b, res)` computes the linear +/* `gsl_vector_convolve(a, b, res)` computes the linear * convolution of two vectors. The resulting vector * has size `a->n + b->n - 1` and is stored in `res`. */ @@ -76,7 +76,7 @@ gsl_histogram* rl_deconvolve( /* Create a histogram with the same edges * as `data`, but with the original size, - * to return the cleaned result + * in which to return the cleaned result. */ gsl_histogram *hist = gsl_histogram_calloc(orig_size);