From 1a57977ea3a286206b800e3e3fd79faa6f6e7404 Mon Sep 17 00:00:00 2001 From: Nick Grebnev <44035630+nektonick@users.noreply.github.com> Date: Sat, 20 Aug 2022 16:57:30 +0300 Subject: [PATCH] Typo fixed (#210) --- doc/limitations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/limitations.md b/doc/limitations.md index 482d13b..feb8a64 100644 --- a/doc/limitations.md +++ b/doc/limitations.md @@ -20,7 +20,7 @@ * By default `MAGIC_ENUM_RANGE_MIN = -128`, `MAGIC_ENUM_RANGE_MAX = 128`. - * `MAGIC_ENUM_RANGE = (MAGIC_ENUM_RANGE_MAX - MAGIC_ENUM_RANGE_MIN)` must be less than `UINT16_MIN`. + * `MAGIC_ENUM_RANGE = (MAGIC_ENUM_RANGE_MAX - MAGIC_ENUM_RANGE_MIN)` must be less than `UINT16_MAX`. * If need another range for all enum types by default, redefine the macro `MAGIC_ENUM_RANGE_MIN` and `MAGIC_ENUM_RANGE_MAX`.