diff --git a/snippets/js/s/drop-right-while.md b/snippets/js/s/drop-right-while.md index c30ac9c99..5a7794ea1 100644 --- a/snippets/js/s/drop-right-while.md +++ b/snippets/js/s/drop-right-while.md @@ -1,5 +1,5 @@ --- -title: Drop list elements from the right based on function +title: Drop array elements from the right based on function type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/drop-right.md b/snippets/js/s/drop-right.md index ec024d275..cab06df18 100644 --- a/snippets/js/s/drop-right.md +++ b/snippets/js/s/drop-right.md @@ -1,5 +1,5 @@ --- -title: Drop list elements from the right +title: Drop array elements from the right type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/drop-while.md b/snippets/js/s/drop-while.md index a9b215bdf..41842c896 100644 --- a/snippets/js/s/drop-while.md +++ b/snippets/js/s/drop-while.md @@ -1,5 +1,5 @@ --- -title: Drop list elements from the left based on function +title: Drop array elements from the left based on function type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/drop.md b/snippets/js/s/drop.md index 9022cdcc1..20de321b7 100644 --- a/snippets/js/s/drop.md +++ b/snippets/js/s/drop.md @@ -1,5 +1,5 @@ --- -title: Drop list elements from the left +title: Drop array elements from the left type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/symmetric-difference-with.md b/snippets/js/s/symmetric-difference-with.md index 11f2f71c6..e4df9ec58 100644 --- a/snippets/js/s/symmetric-difference-with.md +++ b/snippets/js/s/symmetric-difference-with.md @@ -1,5 +1,5 @@ --- -title: Array symmetric difference +title: Array symmetric difference based on function type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/take-right-until.md b/snippets/js/s/take-right-until.md index 6c5f193de..c05013625 100644 --- a/snippets/js/s/take-right-until.md +++ b/snippets/js/s/take-right-until.md @@ -1,5 +1,5 @@ --- -title: Remove list elements from the end until condition is met +title: Remove array elements from the end until condition is met type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/take-right-while.md b/snippets/js/s/take-right-while.md index dff82e163..0f345b9ef 100644 --- a/snippets/js/s/take-right-while.md +++ b/snippets/js/s/take-right-while.md @@ -1,5 +1,5 @@ --- -title: Remove list elements from the end while condition is met +title: Remove array elements from the end while condition is met type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/take-right.md b/snippets/js/s/take-right.md index fb899c676..fc6d20c93 100644 --- a/snippets/js/s/take-right.md +++ b/snippets/js/s/take-right.md @@ -1,5 +1,5 @@ --- -title: Remove list elements from the end +title: Remove array elements from the end type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/take-until.md b/snippets/js/s/take-until.md index 60c46549d..3ee69d7fc 100644 --- a/snippets/js/s/take-until.md +++ b/snippets/js/s/take-until.md @@ -1,5 +1,5 @@ --- -title: Remove list elements until condition is met +title: Remove array elements until condition is met type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/take-while.md b/snippets/js/s/take-while.md index 04926e8c8..10a94dcbc 100644 --- a/snippets/js/s/take-while.md +++ b/snippets/js/s/take-while.md @@ -1,5 +1,5 @@ --- -title: Remove list elements while condition is met +title: Remove array elements while condition is met type: snippet language: javascript tags: [array] diff --git a/snippets/js/s/take.md b/snippets/js/s/take.md index 117df51df..4e3b21c81 100644 --- a/snippets/js/s/take.md +++ b/snippets/js/s/take.md @@ -1,5 +1,5 @@ --- -title: Remove list elements +title: Remove array elements type: snippet language: javascript tags: [array]