From 2d48158bafc986b88a801c470b7323282116054a Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 3 Sep 2013 09:06:49 -0700 Subject: [PATCH] Minor changes. --- README.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index f537fd91..78fa4624 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ format ====== Format is an open-source formatting library for C++. -It can be used as a type-safe alternative to `printf` or as a fast +It can be used as a type-safe alternative to printf or as a fast alternative to IOStreams. Features @@ -19,8 +19,8 @@ Features `__ in Python. * Support for user-defined types. * High speed: performance of the format API is close to that of - glibc's ``printf`` and better than performance of IOStreams. See - `Speed tests`_. + glibc's `printf `__ + and better than performance of IOStreams. See `Speed tests`_. * Small code size both in terms of source code (format consists of a single header file and a single source file) and compiled code. See `Compile time and code bloat`_. @@ -32,7 +32,8 @@ Features permissive BSD `license`_. * `Portability`_ with consistent output across platforms and support for older compilers. -* Clean warning-free codebase even on high warning levels (``-Wall -Wextra -pedantic``). +* Clean warning-free codebase even on high warning levels + (-Wall -Wextra -pedantic). See the `documentation `__ for more details.