Skip to content
This repository was archived by the owner on Oct 16, 2019. It is now read-only.

Commit 5d379da

Browse files
author
Fabien Basmaison
committed
added a few comments + deleted unnecessary line
1 parent a7318be commit 5d379da

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

burndown_chart.php

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
/*
1616
* Some data you'd like to change and update daily (dailyPoints & dailyUSPoints)
1717
* numbers in parentheses are added hours to the sprint
18-
* 20120517: #17000; Sam and Sylvain already finished 4 hours on day 0
1918
*
2019
*/
2120
$sprint = array(
@@ -29,23 +28,23 @@
2928
*
3029
*/
3130
'dailyPoints' => array(
32-
1+3+5+1,
33-
1+5+2,
34-
6+6+6+6
31+
1+3+5+1, // day 1
32+
1+5+2, // day 2
33+
6+6+6+6 // day 3
3534
),
3635
'dailyUSPoints' => array(
37-
0,
38-
1,
39-
3+5
36+
0, // day 1
37+
1, // day 2
38+
3+5 // day 3
4039
),
4140
/*
4241
* 2012
4342
*
4443
*/
4544
'dailyBugs' => array(
46-
1+2+3,
47-
5+5+5,
48-
2
45+
1+2+3, // day 1
46+
5+5+5, // day2
47+
2 // day 3
4948
)
5049
);
5150

0 commit comments

Comments
 (0)