-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix spelling #5349
Fix spelling #5349
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good to me.
I am interested to know how you catch all these?
Please provide this info in the PR description instead of the template.
Thank you!
figs['mapbox_density-mulitple'] = require('@mocks/mapbox_density-mulitple'); | ||
figs['mapbox_density-mulitple_legend'] = require('@mocks/mapbox_density-mulitple_legend'); | ||
figs['mapbox_density-multiple'] = require('@mocks/mapbox_density-multiple'); | ||
figs['mapbox_density-multiple_legend'] = require('@mocks/mapbox_density-multiple_legend'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please rename the mock and baseline files at following addresses?
test/image/mocks/mapbox_density-mulitple.json
test/image/mocks/mapbox_density-mulitple_legend.json
test/image/baselines/mapbox_density-mulitple_legend.png
test/image/baselines/mapbox_density-mulitple.png
@@ -266,7 +266,7 @@ describe('Visible rangesliders', function() { | |||
rangeslider: {visible: true} | |||
}, | |||
width: 800, | |||
hieght: 500 | |||
height: 500 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch.
Let's remove this line, so that the default height
is applied as before.
💃 |
Hey @archmoj I can do a PR now and fix them if you want ? |
I am about to submit a PR. So no worries there. |
Found a better way to check spelling. This Go tool does find mistakes in source code as well as Markdown. From my experience it does not work on all file types or find all the errors, but it does seem to work well on code comments - refs plotly#5349 - refs plotly/dash#1081 Using -> https://github.com/client9/misspell
Thanks for your interest in plotly.js!
Translations:
lib/locales/
, not those indist/
Features, Bug fixes, and others:
Before opening a pull request, developer should:
git rebase
their local branch off the latestmaster
,git add
thedist/
folder (thedist/
is updated only on version bumps),package-lock.json
file (if any new dependency required),Note that it is forbidden to force push (i.e.
git push -f
) to remote branches associated with opened pull requests. Force pushes make it hard for maintainers to keep track of updates. Therefore, if required, pleasegit merge master
into your PR branch instead ofgit rebase master
.