diff --git a/docs/reference-index.md b/docs/Readme.md similarity index 57% rename from docs/reference-index.md rename to docs/Readme.md index b9833c3f..45350f9a 100644 --- a/docs/reference-index.md +++ b/docs/Readme.md @@ -2,14 +2,22 @@ These are the currently documented areas of the framework. There is more to come Before looking at this material be sure to read the [tutorial](tutorial.md) -* [Command Line](command-line.md) -* [Assertion Macros](assertions.md) +* [Assertion macros](assertions.md) +* [Logging macros](logging.md) * [Test cases and sections](test-cases-and-sections.md) -* [Logging Macros](logging.md) -* [Supplying your own main()](own-main.md) * [Test fixtures](test-fixtures.md) +* [Command line](command-line.md) +* [Build systems](build-systems.md) +* [Supplying your own main()](own-main.md) * [Why are my tests slow to compile?](slow-compiles.md) +Other + +* [Why Catch?](why-catch.md) +* [What's changed](whats-changed.md) +* [Contributing](contributing.md) + --- -[Home](../README.md) \ No newline at end of file +[Home](../README.md) + diff --git a/docs/tutorial.md b/docs/tutorial.md index 5baa0572..a2555f74 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -220,7 +220,7 @@ Scenario: vectors can be sized and resized ``` ## Next steps -For more specific information see the [Reference pages](reference-index.md) +For more specific information see the [Reference pages](Readme.md) ---