-
-
Notifications
You must be signed in to change notification settings - Fork 313
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
correct spelling #4522
correct spelling #4522
Conversation
Thanks for the clarification, and the links ! |
I cancelled the WGLMakie runs here because they were full of timeouts. I tried running CI on a different branch (https://github.com/MakieOrg/Makie.jl/actions/runs/11531218386/job/32101665605?pr=4472) and did not get timeouts, but rerunning here still produced them. |
Except some doc-strings and a few local variables renames here, https://github.com/MakieOrg/Makie.jl/pull/4522/files#diff-b49aa74de270f83f7d96f661d23e3e1044de710184415a64e5db70890a671841R225-R259, which have no impact elsewhere. |
Seems like the only change in the WGLMakie source to me that could possibly have an effect on anything, if interpolation of that string into javascript has some escaping bugs.
Wow that was a nice catch indeed 😲 ! |
@SimonDanisch looks like that single quote was the reason for the hangs, probably worth looking into the JS interpolation mechanism. |
Thanks @t-bltg, we might also want to make typo catching more automatic in the future, I know other repos have added such CI workflows in the past and I guess you also used a tool rather than reading everything in the repo? |
Of course there were a lot of false positive, but I've used codespell: Seems like the corresponding gh action might be a start, should I add it to this PR, and configure it ? |
@t-bltg we can try that in a separate PR, depends on how well we can cut down the false positive rate. Maybe if detection is only run on the diff. |
This is fine, one WGLMakie test is currently flaky, the rerun is not needed for me @t-bltg |
Is our ReferenceUpdater handling renaming correctly? |
When you rename plots they appear in both the missing refimages and the new refimages section, so yeah that works |
Description
This is a code quality PR (hand corrections) fixing spelling typos (mostly in comments).
There are two ambiguities to be discussed:
Tesselation
should be spelledTessellation
, but since those are variables, I haven't corrected them inMakie
;independant
should be spelledindependent
, but this relates to a function inBonito.jl
so I haven't modified it to avoid disruption.Type of change
This is a NFC.