From e273a3dc883cc8e152b9dacb5f6ed86177f607f3 Mon Sep 17 00:00:00 2001 From: faulda Date: Sun, 17 Jul 2016 15:21:01 -0700 Subject: [PATCH] Fix grammar error in tutorial.md It's = it is In the sentence "In fact it is usually a good idea to put the block with the ```#define``` [in it's own source file](slow-compiles.md).", the correct usage is "its", not "it's". --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 1aa2a659..73924592 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -233,7 +233,7 @@ The requirement is that the following block of code ([or equivalent](own-main.md appears in _exactly one_ source file. Use as many additional cpp files (or whatever you call your implementation files) as you need for your tests, partitioned however makes most sense for your way of working. Each additional file need only ```#include "catch.hpp"``` - do not repeat the ```#define```! -In fact it is usually a good idea to put the block with the ```#define``` [in it's own source file](slow-compiles.md). +In fact it is usually a good idea to put the block with the ```#define``` [in its own source file](slow-compiles.md). Do not write your tests in header files!