From 60b793da1d419fc73fd3f8e48fb5cb3d500a7470 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sun, 7 Sep 2025 14:56:52 -0400 Subject: [PATCH] Fix various typos Found via `codespell -L bui,fo,thirdparty` Signed-off-by: luzpaz --- src/opentimelineio/effect.h | 2 +- .../opentimelineio/algorithms/timeline_algo.py | 2 +- src/py-opentimelineio/opentimelineio/core/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/opentimelineio/effect.h b/src/opentimelineio/effect.h index f0f9e59628..8b442acbdc 100644 --- a/src/opentimelineio/effect.h +++ b/src/opentimelineio/effect.h @@ -42,7 +42,7 @@ class Effect : public SerializableObjectWithMetadata _effect_name = effect_name; } - /// @brief Return whether the effect is enabed. + /// @brief Return whether the effect is enabled. bool enabled() const { return _enabled; }; /// @brief Set whether the effect is enabled. diff --git a/src/py-opentimelineio/opentimelineio/algorithms/timeline_algo.py b/src/py-opentimelineio/opentimelineio/algorithms/timeline_algo.py index 3c97d55943..dc99341cc3 100644 --- a/src/py-opentimelineio/opentimelineio/algorithms/timeline_algo.py +++ b/src/py-opentimelineio/opentimelineio/algorithms/timeline_algo.py @@ -24,7 +24,7 @@ def timeline_trimmed_to_range(in_timeline, trim_range): :param Timeline in_timeline: Timeline to trim :param TimeRange trim_range: - :returnd: New trimmed timeline + :returns: New trimmed timeline :rtype: Timeline """ new_timeline = copy.deepcopy(in_timeline) diff --git a/src/py-opentimelineio/opentimelineio/core/__init__.py b/src/py-opentimelineio/opentimelineio/core/__init__.py index 784ab11523..f2c5d5b2e2 100644 --- a/src/py-opentimelineio/opentimelineio/core/__init__.py +++ b/src/py-opentimelineio/opentimelineio/core/__init__.py @@ -279,7 +279,7 @@ class Foo(SerializableObject): :param str doc: field documentation :param Any default_value: default value to return if no field value is set yet - :return: property object + :returns: property object :rtype: :py:class:`property` """