Update tutorial.md

This commit is contained in:
Markus Werle 2017-06-28 17:22:54 +02:00 committed by Martin Hořeňovský
parent 7013e388f7
commit 6f32db35af
1 changed files with 1 additions and 1 deletions

View File

@ -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?