aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Paland <marco@paland.com>2018-12-29 18:43:18 +0100
committerMarco Paland <marco@paland.com>2018-12-29 18:43:18 +0100
commitd974b16eacb5bdfdbbecf15d512a68c1bc23c743 (patch)
tree2073809bd9436efa26afe8a7e99ca26763f35f42
parent3f162dbdd3766599c70940b3a56c995147fbd1bc (diff)
downloadprintf-d974b16eacb5bdfdbbecf15d512a68c1bc23c743.tar.gz
printf-d974b16eacb5bdfdbbecf15d512a68c1bc23c743.tar.bz2
printf-d974b16eacb5bdfdbbecf15d512a68c1bc23c743.zip
fix(readme): fixed compiler switch comment
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index dfc2cf4..33736fc 100644
--- a/README.md
+++ b/README.md
@@ -163,9 +163,9 @@ int length = sprintf(NULL, "Hello, world"); // length is set to 12
| PRINTF_INCLUDE_CONFIG_H | undefined | Define this as compiler switch (e.g. `gcc -DPRINTF_INCLUDE_CONFIG_H`) to include a "printf_config.h" definition file |
| PRINTF_NTOA_BUFFER_SIZE | 32 | ntoa (integer) conversion buffer size. This must be big enough to hold one converted numeric number _including_ leading zeros, normally 32 is a sufficient value. Created on the stack |
| PRINTF_FTOA_BUFFER_SIZE | 32 | ftoa (float) conversion buffer size. This must be big enough to hold one converted float number _including_ leading zeros, normally 32 is a sufficient value. Created on the stack |
-| PRINTF_DISABLE_SUPPORT_FLOAT | undefined | Define this to enable floating point (%f) support |
-| PRINTF_DISABLE_SUPPORT_LONG_LONG | undefined | Define this to enable long long (%ll) support |
-| PRINTF_DISABLE_SUPPORT_PTRDIFF_T | undefined | Define this to enable ptrdiff_t (%t) support |
+| PRINTF_DISABLE_SUPPORT_FLOAT | undefined | Define this to disable floating point (%f) support |
+| PRINTF_DISABLE_SUPPORT_LONG_LONG | undefined | Define this to disable long long (%ll) support |
+| PRINTF_DISABLE_SUPPORT_PTRDIFF_T | undefined | Define this to disable ptrdiff_t (%t) support |
## Caveats