From c6e1e781933521e456ea9f2a85cbead69efe7fd1 Mon Sep 17 00:00:00 2001 From: kitiya Date: Fri, 8 Sep 2017 13:09:17 -0600 Subject: [PATCH] adding a back-tick ( ` ) Adding a back-tick to correct code highlighter --- .../05-array-methods/3-filter-range-in-place/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/05-array-methods/3-filter-range-in-place/task.md b/1-js/05-data-types/05-array-methods/3-filter-range-in-place/task.md index a737a525..7066a51a 100644 --- a/1-js/05-data-types/05-array-methods/3-filter-range-in-place/task.md +++ b/1-js/05-data-types/05-array-methods/3-filter-range-in-place/task.md @@ -4,7 +4,7 @@ importance: 4 # Filter range "in place" -Write a function `filterRangeInPlace(arr, a, b)` that gets an array `arr` and removes from it all values except those that are between `a` and `b. The test is: `a ≤ arr[i] ≤ b`. +Write a function `filterRangeInPlace(arr, a, b)` that gets an array `arr` and removes from it all values except those that are between `a` and `b`. The test is: `a ≤ arr[i] ≤ b`. The function should only modify the array. It should not return anything.