diff --git a/Backtracking/GeneratePermutations.js b/Backtracking/GeneratePermutations.js
index 288eeb049b..54fa6bb518 100644
--- a/Backtracking/GeneratePermutations.js
+++ b/Backtracking/GeneratePermutations.js
@@ -1,5 +1,5 @@
 /*
- * Problem Statement: Generate all distinct permutations of a an array (all permutations should be in sorted order);
+ * Problem Statement: Generate all distinct permutations of an array (all permutations should be in sorted order);
  *
  * What is permutations?
  * - Permutation means possible arrangements in a set (here it is an array);