diff --git a/README.rst b/README.rst
index 16fee2da..8d53740a 100644
--- a/README.rst
+++ b/README.rst
@@ -1,10 +1,10 @@
-format
-======
+C++ Format
+==========
-.. image:: https://travis-ci.org/cppformat/format.png?branch=master
- :target: https://travis-ci.org/cppformat/format
+.. image:: https://travis-ci.org/cppformat/cppformat.png?branch=master
+ :target: https://travis-ci.org/cppformat/cppformat
-Format is an open-source formatting library for C++.
+C++ Format is an open-source formatting library for C++.
It can be used as a type-safe alternative to printf or as a fast
alternative to IOStreams.
@@ -42,7 +42,7 @@ Features
(-Wall -Wextra -pedantic).
* Support for wide strings.
-See the `documentation `__ for more details.
+See the `documentation `__ for more details.
Examples
--------
@@ -60,7 +60,7 @@ Arguments can be accessed by position and arguments' indices can be repeated:
std::string s = str(fmt::Format("{0}{1}{0}") << "abra" << "cad");
// s == "abracadabra"
-Format can be used as a safe portable replacement for ``itoa``:
+C++ Format can be used as a safe portable replacement for ``itoa``:
.. code-block:: c++