From: Martin Quinson Date: Tue, 18 Nov 2014 08:44:34 +0000 (+0100) Subject: typo -= 2 X-Git-Tag: v3_12~732^2~205 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/505a8244525e28d212a27a6cc87d8a58b04dae44 typo -= 2 --- diff --git a/src/xbt/config.c b/src/xbt/config.c index 60bf7a6d9a..0c23d46e1a 100644 --- a/src/xbt/config.c +++ b/src/xbt/config.c @@ -275,7 +275,7 @@ xbt_cfg_register(xbt_cfg_t * cfg, break; default: - XBT_ERROR("%d is an invalide type code", (int)type); + XBT_ERROR("%d is an invalid type code", (int)type); } xbt_dict_set((xbt_dict_t) * cfg, name, res, NULL); @@ -284,7 +284,7 @@ xbt_cfg_register(xbt_cfg_t * cfg, /** @brief Unregister an element from a config set. * * @param cfg the config set - * @param name the name of the elem to be freed + * @param name the name of the element to be freed * * Note that it removes both the description and the actual content. * Throws not_found when no such element exists.