Skip to content

Commit 386fccc

Browse files
authored
Fix various typos (#1936)
Found via `codespell -L bui,fo,thirdparty` Signed-off-by: luzpaz <[email protected]>
1 parent 3dbeee4 commit 386fccc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/opentimelineio/effect.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Effect : public SerializableObjectWithMetadata
4242
_effect_name = effect_name;
4343
}
4444

45-
/// @brief Return whether the effect is enabed.
45+
/// @brief Return whether the effect is enabled.
4646
bool enabled() const { return _enabled; };
4747

4848
/// @brief Set whether the effect is enabled.

src/py-opentimelineio/opentimelineio/algorithms/timeline_algo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def timeline_trimmed_to_range(in_timeline, trim_range):
2424
2525
:param Timeline in_timeline: Timeline to trim
2626
:param TimeRange trim_range:
27-
:returnd: New trimmed timeline
27+
:returns: New trimmed timeline
2828
:rtype: Timeline
2929
"""
3030
new_timeline = copy.deepcopy(in_timeline)

src/py-opentimelineio/opentimelineio/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ class Foo(SerializableObject):
279279
:param str doc: field documentation
280280
:param Any default_value: default value to return if no field value is set yet
281281
282-
:return: property object
282+
:returns: property object
283283
:rtype: :py:class:`property`
284284
"""
285285

0 commit comments

Comments
 (0)