diff options
| author | Peder Bergebakken Sundt <pbsds@hotmail.com> | 2025-02-22 21:23:34 +0100 |
|---|---|---|
| committer | Peder Bergebakken Sundt <pbsds@hotmail.com> | 2025-02-24 10:44:41 +0100 |
| commit | 5aba99242eb2ca90cdc4eea40d61ad9157e5913c (patch) | |
| tree | 34a7193fe0a9d6d37f9299449786e5798468a97c /pkgs/development/python-modules/matplotlib | |
| parent | d8b348c8ed187ee1c1a83c2987a6b7a93d6799b5 (diff) | |
treewide: fix typos in comments
Made with
```shell
git restore .
fd '\.nix$' pkgs/ --type f -j1 -x bash -xc "$(cat <<"EOF"
typos --no-check-filenames --write-changes "$1"
git diff --exit-code "$1" && exit
#( git diff "$1" | grep -qE "^\+ +[^# ]") && git restore "$1"
count1="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> ' | wc -l )"
count2="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> (<span style="color:#f8f8f2;"> *</span>)?<span style="color:#75715e;">.*</span>$' | wc -l )"
[[ $count1 -ne $count2 ]] && git restore "$1"
EOF
)" -- {}
```
and filtered with `GIT_DIFF_OPTS='--unified=15' git -c interactive.singleKey=true add --patch`
I initially tried using the tree-sitter cli, python bindings and even ast-grep through various means, but this is what I ended up with.
Diffstat (limited to 'pkgs/development/python-modules/matplotlib')
| -rw-r--r-- | pkgs/development/python-modules/matplotlib/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index 06078a2b9b4f..a8e2768f1fbd 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -21,7 +21,7 @@ ffmpeg-headless, freetype, # By default, almost all tests fail due to the fact we use our version of - # freetype. We still define use this argument to define the overriden + # freetype. We still use this argument to define the overridden # derivation `matplotlib.passthru.tests.withoutOutdatedFreetype` - which # builds matplotlib with the freetype version they default to, with which all # tests should pass. |
