From 0e14e7646bb9da843c34c9483194702d7fe0ccc0 Mon Sep 17 00:00:00 2001 From: Nicola Fontana Date: Wed, 16 Jan 2019 15:47:27 +0100 Subject: [PATCH] adg: fix typo in adg_round docblock --- src/adg/adg-utils.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/adg/adg-utils.c b/src/adg/adg-utils.c index 3ef18d97..6eccab9c 100644 --- a/src/adg/adg-utils.c +++ b/src/adg/adg-utils.c @@ -524,7 +524,7 @@ adg_nop(void) /** * adg_round: * @value: the value to round - * @decimals: the number of significald decimals to consider + * @decimals: the number of significant decimals to consider * * Rounds the @value floating number to a specific number of digits. Be aware * a binary floating point is unable to represent all decimal numbers, i.e. @@ -541,7 +541,6 @@ adg_round(gdouble value, gint decimals) return decimals > 0 ? adg_round(value*10, decimals-1) / 10 : round(value); } - /** * adg_single_strchr: * @string: a string -- 2.11.4.GIT