From 0ae431905043db470f01619a5e7cdb0476a7e011 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Fri, 30 Jun 2017 13:52:33 +0300 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/05-types/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`.