From 1bce0a6372500a50c70fb055ed3f1c3196e4762d Mon Sep 17 00:00:00 2001 From: bnorton Date: Tue, 18 Dec 2012 10:45:38 -0800 Subject: [PATCH] Updating the 'How to get Catch' section. --- Tutorial.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tutorial.md b/Tutorial.md index 562894e..a2011ff 100644 --- a/Tutorial.md +++ b/Tutorial.md @@ -1,10 +1,10 @@ # Getting the source code -CATCH is hosted here on GitHub. There are three ways to get CATCH. All are available from the [[Source|https://github.com/philsquared/Catch]] page. +CATCH is hosted here on GitHub. There are two ways to get CATCH. All are available from the [[Source|https://github.com/philsquared/Catch]] page. -The simplest way is to download the single-header version of the library. To do so click the Downloads button, then select catch.hpp from the "Download Packages" section and you're done. +The simplest way is to download the single-header version of the library. To do so go [[to the recently deprecated downloads page|https://github.com/philsquared/Catch/downloads]] and grab catch.hpp. -If you prefer you can get the full source, including self-test projects and sample tests, from the same Downloads Button (from under "Download Source" as a zip or tar file), or using git to grab the head revision. +If you prefer you can get the full source, including self-test projects and sample tests, clone the repository with git. Use `git clone https://github.com/philsquared/Catch/ catch`. ## Where to put it?