mirror of
https://github.com/labs42io/clean-code-typescript.git
synced 2024-11-23 05:34:04 +00:00
fix typo (#20)
This commit is contained in:
parent
d66665d545
commit
ddadce217e
|
@ -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:**
|
||||
|
||||
|
|
Loading…
Reference in a new issue