From 06e46f188dcaef2b1968ed060f304c40fdc22557 Mon Sep 17 00:00:00 2001 From: Rachel Krupnick Date: Sat, 17 Nov 2018 03:14:20 -0500 Subject: [PATCH] Fix typo and add to description. (#23313) --- guide/english/javascript/template-literals/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/template-literals/index.md b/guide/english/javascript/template-literals/index.md index de901bd0f9..a3ba180cd0 100644 --- a/guide/english/javascript/template-literals/index.md +++ b/guide/english/javascript/template-literals/index.md @@ -2,7 +2,7 @@ title: Template Literals --- -Template Literals are an ES6 feature utilizing the backtick charater to define a string value +Template Literals are an ES6 feature utilizing the backtick character to define a string value. They give the programmer the ability to combine variables and strings without concatenation, thus making the code cleaner. ### The basic syntax