Skip to content
Open
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
6 changes: 3 additions & 3 deletions src/opentime/rationalTime.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class OPENTIME_API_TYPE RationalTime
/// frames. Result will be in the rate of start time.
///
/// @param start_time The start time.
/// @param end_time_exclusive The inclusive end time.
/// @param end_time_inclusive The inclusive end time.
static constexpr RationalTime duration_from_start_end_time_inclusive(
RationalTime start_time,
RationalTime end_time_inclusive) noexcept
Expand Down Expand Up @@ -375,7 +375,7 @@ class OPENTIME_API_TYPE RationalTime
/// strictly_equal().
///
/// @param lhs Left hand side time.
/// @param lhs Right hand side time.
/// @param rhs Right hand side time.
friend constexpr bool
operator==(RationalTime lhs, RationalTime rhs) noexcept
{
Expand All @@ -389,7 +389,7 @@ class OPENTIME_API_TYPE RationalTime
/// strictly_equal().
///
/// @param lhs Left hand side time.
/// @param lhs Right hand side time.
/// @param rhs Right hand side time.
friend constexpr bool
operator!=(RationalTime lhs, RationalTime rhs) noexcept
{
Expand Down
4 changes: 2 additions & 2 deletions src/opentimelineio/serializableObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class OTIO_API_TYPE SerializableObject
///
/// @param file_name The file name.
/// @param error_status The return status.
/// @param target_family_label_spec @todo Add comment.
/// @param target_family_label_spec todo: Add comment.
/// @param indent The number of spaces to use for indentation.
OTIO_API bool to_json_file(
std::string const& file_name,
Expand All @@ -64,7 +64,7 @@ class OTIO_API_TYPE SerializableObject
/// @brief Serialize this object to a JSON string.
///
/// @param error_status The return status.
/// @param target_family_label_spec @todo Add comment.
/// @param target_family_label_spec todo: Add comment.
/// @param indent The number of spaces to use for indentation.
OTIO_API std::string to_json_string(
ErrorStatus* error_status = nullptr,
Expand Down
Loading