Skip to content

Commit

Permalink
fix: invalid letter case
Browse files Browse the repository at this point in the history
Co-Authored-By: Prokop Simek <prokopsimek@users.noreply.github.com>
  • Loading branch information
adelkahomolova and prokopsimek authored Dec 10, 2019
1 parent 26abede commit c1aa97d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class TimeToSolvePullRequestsPractice implements IPractice {

const daysInMilliseconds = moment.duration(30, 'days').asMilliseconds();
const now = Date.now();
const openPullrequestsTooLong = [];
const openPullRequestsTooLong = [];

latestPRsUpdate.forEach((prDate) => {
if (now - prDate > daysInMilliseconds) {
Expand Down

0 comments on commit c1aa97d

Please sign in to comment.