Skip to content

Commit

Permalink
Minor documentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Jan 5, 2023
1 parent d77e685 commit dd10d3d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/manifest/update_period_in_place.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,19 +124,19 @@ export default function updatePeriodInPlace(
* Period.
*/
export interface IUpdatedPeriodResult {
// XXX TODO doc
/** `true` if at least one Adaptation has been updated. */
/** Information on Adaptations that have been updated. */
updatedAdaptations : Array<{
/** The concerned Adaptation. */
adaptation: Adaptation;
/** `true` if at least one Representation has been updated. */
/** Representations that have been updated. */
updatedRepresentations : Representation[];
/** `true` if at least one Representation has been removed. */
/** Representations that have been removed from the Adaptation. */
removedRepresentations : Representation[];
/** `true` if at least one Representation has been added. */
/** Representations that have been added to the Adaptation. */
addedRepresentations : Representation[];
}>;
/** `true` if at least one Adaptation has been removed. */
/** Adaptation that have been removed from the Period. */
removedAdaptations : Adaptation[];
/** `true` if at least one Adaptation has been added. */
/** Adaptation that have been added to the Period. */
addedAdaptations : Adaptation[];
}

0 comments on commit dd10d3d

Please sign in to comment.