diff --git a/README.md b/README.md
index ee0bb91..523b10c 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ Converting (scoped)enum values to/from string names written in C++>=11.
* Supports `enum` and `enum class`
* Supports enums in namespaces, classes or structs even templated or not
* Supports compile-time as much as possible using with C++14 and later
-* Changing enum range with template parameter (default range: `[-128, 128)`) on each call or with your special function for types or adding specialized `enum_range` struct
+* Changing enum range with template parameter (default range: `[0, 256)`) on each call or with your special function for types or adding specialized `enum_range` struct
* Supports and automatically overloaded `operator<<` for Enum types to direct using with ostream objects
* Supports custom enum name output by explicit specialization of `constexpr inline auto mgutility::detail::enum_type::name() noexcept` function
* Supports iterate over enum (names and values) with `mgutility::enum_for_each()` class and it is compatible with standard ranges and views