Skip to content

Commit

Permalink
Update text for default options
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Sep 16, 2020
1 parent 53904b1 commit 6dccd99
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lwprintf/src/include/lwprintf/lwprintf_opt.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ extern "C" {
#endif

/**
* \brief Enables `1` or disables `0` support `%%p` pointer print type
* \brief Enables `1` or disables `0` support `%p` pointer print type
*
* When enabled, architecture must support `uintptr_t` type, normally available with C11 standard
*/
Expand All @@ -96,7 +96,7 @@ extern "C" {
#endif

/**
* \brief Enables `1` or disables `0` support `%%f` float type
* \brief Enables `1` or disables `0` support `%f` float type
*
*/
#ifndef LWPRINTF_CFG_SUPPORT_TYPE_FLOAT
Expand All @@ -122,7 +122,7 @@ extern "C" {
#endif

/**
* \brief Enables `1` or disables `0` support for `%K` for hex byte array output
* \brief Enables `1` or disables `0` support for `%k` for hex byte array output
*
*/
#ifndef LWPRINTF_CFG_SUPPORT_TYPE_BYTE_ARRAY
Expand All @@ -131,8 +131,9 @@ extern "C" {

/**
* \brief Specifies default number of precision for floating number
*
* Represents number of digits to be used after comma if no precision
* is used with specifier
* is set with specifier itself
*
*/
#ifndef LWPRINTF_CFG_FLOAT_DEFAULT_PRECISION
Expand Down

0 comments on commit 6dccd99

Please sign in to comment.