From 0363fd58e3fd6823e11b9f69d363faecebb32ab2 Mon Sep 17 00:00:00 2001 From: Anton Date: Wed, 30 Aug 2017 15:56:02 +0300 Subject: [PATCH] fix typo --- 1-js/02-first-steps/06-type-conversions/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/06-type-conversions/article.md b/1-js/02-first-steps/06-type-conversions/article.md index 4e4a9affe0..df14571ad6 100644 --- a/1-js/02-first-steps/06-type-conversions/article.md +++ b/1-js/02-first-steps/06-type-conversions/article.md @@ -1,6 +1,6 @@ # Type Conversions -Most of the time, operators and functions automatically convert a value to the right type. That's called "type coercion". +Most of the time, operators and functions automatically convert a value to the right type. That's called "type conversion". For example, `alert` automatically converts any value to a string to show it. Mathematical operations convert values to numbers.