From aad173fbc9b017b073c34f934d54b0ce053bd61e Mon Sep 17 00:00:00 2001 From: Ty Mick Date: Mon, 18 May 2020 10:39:02 -0400 Subject: [PATCH] fix(curriculum): "Set Class" description formatting --- .../data-structures/create-a-set-class.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/08-coding-interview-prep/data-structures/create-a-set-class.english.md b/curriculum/challenges/english/08-coding-interview-prep/data-structures/create-a-set-class.english.md index 3931573a4b..a6f9627c56 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/data-structures/create-a-set-class.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/data-structures/create-a-set-class.english.md @@ -9,7 +9,7 @@ forumTopicId: 301632
In this exercise we are going to create a class named Set to emulate an abstract data structure called "set". A set is like an array, but it cannot contain duplicate values. The typical use for a set is to simply check for the presence of an item. -We can see how ES6 set object works in the example below- +We can see how the ES6 Set object works in the example below: ```js const set1 = new Set([1, 2, 3, 5, 5, 2, 0]);