Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/opentimelineio/effect.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/py-opentimelineio/opentimelineio/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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`
"""

Expand Down
Loading