trixi-framework / libtrixi

Interface library for using Trixi.jl from C/C++/Fortran
https://trixi-framework.github.io/libtrixi/
MIT License
3 stars 1 forks source link

False positive in typos #182

Closed benegee closed 6 months ago

benegee commented 6 months ago

Currently on main:

Warning: "PN" should be "ON".
error: `PN` should be `ON`
  --> ./docs/doxygen/Doxyfile:1767:71
     |
1767 | # https://inkscape.org)/ to generate formulas as SVG images instead of PNGs for

Reported here https://github.com/crate-ci/typos/issues/967

sloede commented 6 months ago

Where is the "word" PN in the offending line? Or am I missing something here?

benegee commented 6 months ago

I missed a line. "PNGs" is causing this. If I understood correctly, "PNGs" is interpreted as camelCase and split into "PN "and "Gs".

We might also just use a workaround https://github.com/crate-ci/typos/issues/745#issuecomment-1884591285