From f4bbe3f34c2785cebb7e77b7e567f71903960e6a Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Date: Sun, 21 Feb 2021 22:51:59 -0700 Subject: [PATCH] fix(learn): Updated code blocks to help with translation on two challenges (#41217) --- .../applied-visual-design/adjust-the-tone-of-a-color.md | 2 +- ...e-multiple-values-in-one-variable-using-javascript-arrays.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color.md index aa4dfdf7e3..b8ea590246 100644 --- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color.md +++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color.md @@ -13,7 +13,7 @@ The `hsl()` option in CSS also makes it easy to adjust the tone of a color. Mixi # --instructions-- -All elements have a default `background-color` of `transparent`. Our `nav` element currently appears to have a `cyan` background, because the element behind it has a `background-color` set to `cyan`. Add a `background-color` to the `nav` element so it uses the same `cyan` hue, but has `80% saturation` and `25% lightness` values to change its tone and shade. +All elements have a default `background-color` of `transparent`. Our `nav` element currently appears to have a `cyan` background, because the element behind it has a `background-color` set to `cyan`. Add a `background-color` to the `nav` element so it uses the same `cyan` hue, but has `80%` saturation and `25%` lightness values to change its tone and shade. # --hints-- diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/store-multiple-values-in-one-variable-using-javascript-arrays.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/store-multiple-values-in-one-variable-using-javascript-arrays.md index bb82b01912..d68e86e492 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/store-multiple-values-in-one-variable-using-javascript-arrays.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/store-multiple-values-in-one-variable-using-javascript-arrays.md @@ -13,7 +13,7 @@ With JavaScript `array` variables, we can store several pieces of data in one pl You start an array declaration with an opening square bracket, end it with a closing square bracket, and put a comma between each entry, like this: -`var sandwich = ["peanut butter", "jelly", "bread"]`. +`var sandwich = ["peanut butter", "jelly", "bread"]` # --instructions--