From 7dac3c44f574b221963a947603833874ce0cc345 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 27 Apr 2016 18:26:23 -0700 Subject: [PATCH] Update links --- README.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.rst b/README.rst index eb13412c..f9707ff5 100644 --- a/README.rst +++ b/README.rst @@ -15,7 +15,7 @@ It can be used as a safe alternative to printf or as a fast alternative to IOStreams. -`Documentation `_ +`Documentation `_ Features -------- @@ -26,11 +26,11 @@ Features * Write API similar to the one used by IOStreams but stateless allowing faster implementation. * Format API with `format string syntax - `_ + `_ similar to the one used by `str.format `_ in Python. * Safe `printf implementation - `_ + `_ including the POSIX extension for positional arguments. * Support for user-defined types. * High speed: performance of the format API is close to that of @@ -49,14 +49,14 @@ Features * Ease of use: small self-contained code base, no external dependencies, permissive BSD `license `_ -* `Portability `_ with consistent output +* `Portability `_ with consistent output across platforms and support for older compilers. * Clean warning-free codebase even on high warning levels (-Wall -Wextra -pedantic). * Support for wide strings. * Optional header-only configuration enabled with the ``FMT_HEADER_ONLY`` macro. -See the `documentation `_ for more details. +See the `documentation `_ for more details. Examples -------- @@ -103,10 +103,10 @@ An object of any user-defined type for which there is an overloaded // s == "The date is 2012-12-9" You can use the `FMT_VARIADIC -`_ +`_ macro to create your own functions similar to `format -`_ and -`print `_ +`_ and +`print `_ which take arbitrary arguments: .. code:: c++ @@ -352,7 +352,7 @@ Running the tests Please refer to `Building the library`__ for the instructions on how to build the library and run the unit tests. -__ http://cppformat.github.io/latest/usage.html#building-the-library +__ http://fmtlib.net/latest/usage.html#building-the-library Benchmarks reside in a separate repository, `format-benchmarks `_, @@ -378,7 +378,7 @@ fmt is distributed under the BSD `license `_. The `Format String Syntax -`_ +`_ section in the documentation is based on the one from Python `string module documentation `_ adapted for the current library. For this reason the documentation is