Skip to content

Commit d521bc9

Browse files
[pre-commit.ci] pre-commit autoupdate (ManimCommunity#4140)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.9.2 → v0.9.3](astral-sh/ruff-pre-commit@v0.9.2...v0.9.3) - [github.com/codespell-project/codespell: v2.3.0 → v2.4.0](codespell-project/codespell@v2.3.0...v2.4.0) * fix: typos in two files --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Benjamin Hackl <[email protected]>
1 parent 95fba7d commit d521bc9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repos:
1313
- id: check-toml
1414
name: Validate pyproject.toml
1515
- repo: https://github.com/astral-sh/ruff-pre-commit
16-
rev: v0.9.2
16+
rev: v0.9.3
1717
hooks:
1818
- id: ruff
1919
name: ruff lint
@@ -36,7 +36,7 @@ repos:
3636
files: ^manim/
3737

3838
- repo: https://github.com/codespell-project/codespell
39-
rev: v2.3.0
39+
rev: v2.4.0
4040
hooks:
4141
- id: codespell
4242
files: ^.*\.(py|md|rst)$

manim/mobject/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def _table_to_mob_table(
254254
self,
255255
table: Iterable[Iterable[float | str | VMobject]],
256256
) -> list:
257-
"""Initilaizes the entries of ``table`` as :class:`~.VMobject`.
257+
"""Initializes the entries of ``table`` as :class:`~.VMobject`.
258258
259259
Parameters
260260
----------

tests/module/mobject/svg/test_svg_mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def test_closed_path_does_not_have_extra_point():
139139
def test_close_command_closes_last_move_not_the_starting_one():
140140
# This A.svg is the output of a Text("A") in some systems
141141
# It contains a path that moves from the outer boundary of the A
142-
# to the boundary of the inner triangle, anc then closes the path
142+
# to the boundary of the inner triangle, and then closes the path
143143
# which should close the inner triangle and not the outer boundary.
144144
svg = SVGMobject(
145145
get_svg_resource("A.svg"),

0 commit comments

Comments
 (0)