Skip to content

Commit

Permalink
Capitalize French in arguments to Hello function
Browse files Browse the repository at this point in the history
  • Loading branch information
arku committed Jun 8, 2019
1 parent 7c61f29 commit 3291844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,6 @@ By now you should have some understanding of:
* Writing the smallest amount of code to make it pass so we know we have working software
* _Then_ refactor, backed with the safety of our tests to ensure we have well-crafted code that is easy to work with

In our case we've gone from `Hello()` to `Hello("name")`, to `Hello("name", "french")` in small, easy to understand steps.
In our case we've gone from `Hello()` to `Hello("name")`, to `Hello("name", "French")` in small, easy to understand steps.

This is of course trivial compared to "real world" software but the principles still stand. TDD is a skill that needs practice to develop but by being able to break problems down into smaller components that you can test you will have a much easier time writing software.

0 comments on commit 3291844

Please sign in to comment.