From 59d0efd6d674a3667c8e746344084458efb0792e Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 28 Apr 2016 06:54:37 -0700 Subject: [PATCH] Update links --- doc/_templates/layout.html | 6 +++--- doc/index.rst | 6 +++--- fmt/format.h | 2 +- support/update-converity-branch.py | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html index 934538d6..72b69761 100644 --- a/doc/_templates/layout.html +++ b/doc/_templates/layout.html @@ -53,9 +53,9 @@ {% for name in ['Contents', 'Usage', 'API', 'Syntax'] %} diff --git a/doc/index.rst b/doc/index.rst index 73bc4c22..4e17d4b5 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,7 +1,7 @@ Overview ======== -**fmt** (previously cppformat) is an open-source formatting library. +**fmt** (formerly cppformat) is an open-source formatting library. It can be used as a safe alternative to printf or as a fast alternative to C++ IOStreams. @@ -149,7 +149,7 @@ Portability The library is highly portable. Here is an incomplete list of operating systems and compilers where it has been tested and known to work: -* 64-bit (amd64) GNU/Linux with GCC 4.4.3, `4.6.3 `_, +* 64-bit (amd64) GNU/Linux with GCC 4.4.3, `4.6.3 `_, 4.7.2, 4.8.1 and Intel C++ Compiler (ICC) 14.0.2 * 32-bit (i386) GNU/Linux with GCC 4.4.3, 4.6.3 @@ -157,7 +157,7 @@ compilers where it has been tested and known to work: * Mac OS X with GCC 4.2.1 and Clang 4.2, 5.1.0 * 64-bit Windows with Visual C++ 2010, 2013 and - `2015 `_ + `2015 `_ * 32-bit Windows with Visual C++ 2010 diff --git a/fmt/format.h b/fmt/format.h index 788ec7cf..438b9e80 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -2118,7 +2118,7 @@ struct ArgArray { static Value make(const T &value) { Value result = MakeValue(value); // Workaround a bug in Apple LLVM version 4.2 (clang-425.0.28) of clang: - // https://github.com/cppformat/cppformat/issues/276 + // https://github.com/fmtlib/fmt/issues/276 (void)result.custom.format; return result; } diff --git a/support/update-converity-branch.py b/support/update-converity-branch.py index 8efd30e0..36c0475a 100755 --- a/support/update-converity-branch.py +++ b/support/update-converity-branch.py @@ -19,7 +19,7 @@ class Git: dir = tempfile.mkdtemp() try: git = Git(dir) - git('clone', '-b', 'coverity', 'git@github.com:cppformat/cppformat.git', dir) + git('clone', '-b', 'coverity', 'git@github.com:fmtlib/fmt.git', dir) output = git('merge', '-X', 'theirs', '--no-commit', 'origin/master') if 'Fast-forward' not in output: git('reset', 'HEAD', '.travis.yml')