From d463a9018494a3c84b180539b8f631a618673460 Mon Sep 17 00:00:00 2001 From: ljcordero Date: Tue, 7 Jan 2020 14:44:33 -0400 Subject: [PATCH] Show backslash character In this case Github also need to escape the "\" in order to show it. ;) --- 02_Day/02_day_data_types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02_Day/02_day_data_types.md b/02_Day/02_day_data_types.md index cc7bea9..dc88f61 100644 --- a/02_Day/02_day_data_types.md +++ b/02_Day/02_day_data_types.md @@ -311,7 +311,7 @@ Asabeneh Yetayeh. I am 250. I live in Finland #### Long Literal Strings -A string could be a single character or paragraph or a page. If the string length is too big it does not fit in one line. We can use the backslash character (\) at the end of each line to indicate that the string will continue on the next line. +A string could be a single character or paragraph or a page. If the string length is too big it does not fit in one line. We can use the backslash character (\\) at the end of each line to indicate that the string will continue on the next line. **Example:** ```js