diff --git a/README.md b/README.md
index 6c3762839a..243311b703 100644
--- a/README.md
+++ b/README.md
@@ -1640,7 +1640,7 @@ Other Style Guides
const totalScore = String(this.reviewScore);
```
- - [21.3](#21.3) Use `parseInt` for Numbers and always with a radix for type casting.
+ - [21.3](#21.3) Numbers: Use `Number` for type casting and `parseInt` always with a radix for parsing strings.
```javascript
const inputValue = '4';