From 6f32db35af06b30701d159b9e16a21e76d82aada Mon Sep 17 00:00:00 2001 From: Markus Werle Date: Wed, 28 Jun 2017 17:22:54 +0200 Subject: [PATCH] Update tutorial.md --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 3a0f9468..600ba3ba 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -80,7 +80,7 @@ unsigned int Factorial( unsigned int number ) { Now all the tests pass. -Of course there are still more issues to do deal with. For example we'll hit problems when the return value starts to exceed the range of an unsigned int. With factorials that can happen quite quickly. You might want to add tests for such cases and decide how to handle them. We'll stop short of doing that here. +Of course there are still more issues to deal with. For example we'll hit problems when the return value starts to exceed the range of an unsigned int. With factorials that can happen quite quickly. You might want to add tests for such cases and decide how to handle them. We'll stop short of doing that here. ## What did we do here?