From ddadce217edf2c9e5dbc56e993ee37036e6f16ad Mon Sep 17 00:00:00 2001 From: Nicolas Dermine Date: Mon, 18 Feb 2019 07:35:32 +0100 Subject: [PATCH] fix typo (#20) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4bdb818..b1461e1 100644 --- a/README.md +++ b/README.md @@ -1263,7 +1263,7 @@ class Square implements Shape { ### Classes should be small -The class' size is measured by it's responsibility. Following the *Single Responsibility principle* a class should be small. +The class' size is measured by its responsibility. Following the *Single Responsibility principle* a class should be small. **Bad:** @@ -2061,9 +2061,9 @@ describe('AwesomeDate', () => { **[⬆ back to top](#table-of-contents)** -### The name of the test should reveal it's intention +### The name of the test should reveal its intention -When a test fail, it's name is the first indication of what may have gone wrong. +When a test fail, its name is the first indication of what may have gone wrong. **Bad:**