Skip to content

Commit

Permalink
Merge pull request #7 from FattusMannus/patch-2
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
kulgavy authored Jun 22, 2018
2 parents f6cfe15 + a7ee9a8 commit 4fc6103
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,9 @@ $(function () {
});

function changeTasksStat() {
const numberOfComplited = $tasksContainer.children('.checked').length;
const numberOfCompleted = $tasksContainer.children('.checked').length;

$tasksStat.innerHTML = `${numberOfComplited} of 11 complited`;
$tasksStat.innerHTML = `${numberOfCompleted} of 11 completed`;
}
}

Expand Down Expand Up @@ -436,4 +436,4 @@ function getMainChartData() {
}

return [d1, d2, d3];
}
}

0 comments on commit 4fc6103

Please sign in to comment.