Skip to content

Commit d837593

Browse files
committed
Add custom codespell dictionary
1 parent 396fc8f commit d837593

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
- name: Linter checks
2727
run: |
2828
bash _tools/format.sh
29-
codespell -I _tools/codespell-ignore.txt -x _tools/codespell-ignore-lines.txt -S tutorials/i18n/locales.rst {about,community,contributing,getting_started,tutorials}/{*.rst,**/*.rst,**/**/*.rst,**/**/**/*.rst}
29+
30+
codespell -D- -D _tools/codespell-dict.txt -I _tools/codespell-ignore.txt -x _tools/codespell-ignore-lines.txt -S tutorials/i18n/locales.rst {about,community,contributing,getting_started,tutorials}/{*.rst,**/*.rst,**/**/*.rst,**/**/**/*.rst}
3031
3132
# Use dummy builder to improve performance as we don't need the generated HTML in this workflow.
3233
- name: Sphinx build

_tools/codespell-dict.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
anti-aliasing->antialiasing

about/list_of_features.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ See :ref:`doc_renderers` for a detailed comparison of the rendering methods.
369369
- ETC2 (not supported on macOS).
370370
- S3TC (not supported on mobile/Web platforms).
371371

372-
**Anti-aliasing:**
372+
**Antialiasing:**
373373

374374
- Temporal :ref:`antialiasing <doc_3d_antialiasing>` (TAA).
375375
- AMD FidelityFX Super Resolution 2.2 :ref:`antialiasing <doc_3d_antialiasing>` (FSR2),

tutorials/2d/custom_drawing_in_2d.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ You should get the following output:
487487
Unlike ``draw_polygon()``, polylines can only have a single unique color
488488
for all its points (the second argument). This method has 2 additional
489489
arguments: the width of the line (which is as small as possible by default)
490-
and enabling or disabling the anti-aliasing (it is disabled by default).
490+
and enabling or disabling the antialiasing (it is disabled by default).
491491

492492
The order of the ``_draw`` calls is important- like with the Node positions on
493493
the tree hierarchy, the different shapes will be drawn from top to bottom,

tutorials/troubleshooting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ OpenGL applications by your graphics driver.
177177
- **AMD (Windows):** Open the start menu and choose **AMD Software**. Click the
178178
settings "cog" icon in the top-right corner. Go to the **Graphics** tab,
179179
scroll to the bottom and click **Advanced** to unfold its settings. Disable
180-
**Morphological Anti-Aliasing**.
180+
**Morphological Antialiasing**.
181181

182182
Third-party vendor-independent utilities such as vkBasalt may also force
183183
sharpening or FXAA on all Vulkan applications. You may want to check their

0 commit comments

Comments
 (0)