From a5e049d4fc97b2d1fde95b9af2e81cb690472f18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Wed, 2 Aug 2017 14:00:24 +0200 Subject: [PATCH] doc: improve tag --- lib/print.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/print.h b/lib/print.h index 79ec704..440909e 100644 --- a/lib/print.h +++ b/lib/print.h @@ -13,7 +13,7 @@ * */ /** printing utilities to replace the large printf from the standard library (API) - * use % as format specifier prefix, followed by + to enforce sign of prefix, 0 and 0-9 for padding, and format specifier + * @note use % as format specifier prefix, followed by + to enforce sign of prefix, 0 and 0-9 for padding, and format specifier * format specifier supported are: c for far, s for string, u for uint32_t, d for int32_t, U for uint64_t, D for int64_t, x for lower case hex up to uint32_t, X for upper case hex up to uint32_t, b for bits up to uint32_t * @file print.h * @author King Kévin