fix: typo grammar (#43259)
This commit is contained in:
@ -7,7 +7,7 @@ dashedName: part-51
|
|||||||
|
|
||||||
# --description--
|
# --description--
|
||||||
|
|
||||||
Set the `x` values for `tumblrLine` using another "d function". Use your `xScale` and the `d.year` to calculcate their values just like you did for the Twitter line.
|
Set the `x` values for `tumblrLine` using another "d function". Use your `xScale` and the `d.year` to calculate their values just like you did for the Twitter line.
|
||||||
|
|
||||||
# --hints--
|
# --hints--
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ dashedName: part-52
|
|||||||
|
|
||||||
# --description--
|
# --description--
|
||||||
|
|
||||||
Set the `y` values for `tumblrLine` using a "d function" again. Use your `yScale` and `d.followers.tumblr` to calculcate their values just like you did for the Twitter line.
|
Set the `y` values for `tumblrLine` using a "d function" again. Use your `yScale` and `d.followers.tumblr` to calculate their values just like you did for the Twitter line.
|
||||||
|
|
||||||
The x values for each line will be the same, but the y values will use the data from the different platforms.
|
The x values for each line will be the same, but the y values will use the data from the different platforms.
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ const createPareto = reportObj =>
|
|||||||
}, [])
|
}, [])
|
||||||
.sort((a, b) => b.count - a.count);
|
.sort((a, b) => b.count - a.count);
|
||||||
|
|
||||||
router.get('/', reqLimiter, async (reqeust, response) => {
|
router.get('/', reqLimiter, async (request, response) => {
|
||||||
const prs = await PR.find({}).then(data => data);
|
const prs = await PR.find({}).then(data => data);
|
||||||
prs.sort((a, b) => a._id - b._id);
|
prs.sort((a, b) => a._id - b._id);
|
||||||
const reportObj = prs.reduce((obj, pr) => {
|
const reportObj = prs.reduce((obj, pr) => {
|
||||||
|
Reference in New Issue
Block a user