diff --git a/1-js/02-first-steps/05-types/article.md b/1-js/02-first-steps/05-types/article.md index c7f09efc..99013ab3 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -23,7 +23,7 @@ n = 12.345; The *number* type serves both for integer and floating point numbers. -There are many operations for numbers, e.g. multiplication `*`, division `/`, addition `+`, substraction `-` and so on. +There are many operations for numbers, e.g. multiplication `*`, division `/`, addition `+`, subtraction `-` and so on. Besides regular numbers, there are so-called "special numeric values" which also belong to that type: `Infinity`, `-Infinity` and `NaN`.