Skip to content
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.

Commit

Permalink
Removed one of the ";"
Browse files Browse the repository at this point in the history
just a typo
  • Loading branch information
ThunbergOlle committed Jan 11, 2019
1 parent 2ecc5fe commit c47c4de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CodingChallenges/CC_035.4_TSP_GA/P5/ga.js
Expand Up @@ -25,7 +25,7 @@ function normalizeFitness() {
sum += fitness[i];
}
for (var i = 0; i < fitness.length; i++) {
fitness[i] = fitness[i] / sum;;
fitness[i] = fitness[i] / sum;
}
}

Expand Down

0 comments on commit c47c4de

Please sign in to comment.