From 857e29258da36bebfcff74034062fc9f8cf9f5fd Mon Sep 17 00:00:00 2001 From: sidemt Date: Mon, 2 May 2022 03:42:37 +0900 Subject: [PATCH] fix(curriculum): Add periods at the end of hints (#45818) --- .../perform-a-subset-check-on-two-sets-of-data.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/data-structures/perform-a-subset-check-on-two-sets-of-data.md b/curriculum/challenges/english/10-coding-interview-prep/data-structures/perform-a-subset-check-on-two-sets-of-data.md index cdcdd8424a9..ae49ebc0be8 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/data-structures/perform-a-subset-check-on-two-sets-of-data.md +++ b/curriculum/challenges/english/10-coding-interview-prep/data-structures/perform-a-subset-check-on-two-sets-of-data.md @@ -25,7 +25,7 @@ assert( ); ``` -The first `Set` should be contained in the second `Set` +The first `Set` should be contained in the second `Set`. ```js assert( @@ -43,7 +43,7 @@ assert( ); ``` -`['a', 'b'].isSubsetOf(['a', 'b', 'c', 'd'])` should return `true` +`['a', 'b'].isSubsetOf(['a', 'b', 'c', 'd'])` should return `true`. ```js assert( @@ -62,7 +62,7 @@ assert( ); ``` -`['a', 'b', 'c'].isSubsetOf(['a', 'b'])` should return `false` +`['a', 'b', 'c'].isSubsetOf(['a', 'b'])` should return `false`. ```js assert( @@ -80,7 +80,7 @@ assert( ); ``` -`[].isSubsetOf([])` should return `true` +`[].isSubsetOf([])` should return `true`. ```js assert( @@ -93,7 +93,7 @@ assert( ); ``` -`['a', 'b'].isSubsetOf(['c', 'd'])` should return `false` +`['a', 'b'].isSubsetOf(['c', 'd'])` should return `false`. ```js assert(