diff --git a/README.rst b/README.rst index 9b2a0880..523b3933 100644 --- a/README.rst +++ b/README.rst @@ -104,8 +104,8 @@ Use {fmt} as a safe portable replacement for ``itoa`` format_to(buf, "{:x}", 42); // replaces itoa(42, buffer, 16) // access the string with to_string(buf) or buf.data() -Formatting of user-defined types is supported via a simple -`extension API `_: +Format objects of user-defined types via a simple `extension API +`_: .. code:: c++ diff --git a/doc/build.py b/doc/build.py index 324c42b6..b81b55dd 100755 --- a/doc/build.py +++ b/doc/build.py @@ -84,7 +84,7 @@ def build_docs(version='dev', **kwargs): XML_OUTPUT = {1} ALIASES = "rst=\verbatim embed:rst" ALIASES += "endrst=\endverbatim" - INLINE_INHERITED_MEMB = YES + INLINE_INHERITED_MEMBERS = YES MACRO_EXPANSION = YES PREDEFINED = _WIN32=1 \ FMT_USE_VARIADIC_TEMPLATES=1 \