Skip to content

Commit

Permalink
typo crs
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey committed Mar 17, 2021
1 parent a8957ff commit 82d83a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const createPlaylistID = (index, uri) => {
* @param {Object[]} [customTagMappers]
* An array of custom tag mappers for the m3u8-parser instance
* @param {boolean} [experimentalLLHLS=false]
* Wether to keep ll-hls features in the manifest after parsing.
* Whether to keep ll-hls features in the manifest after parsing.
* @return {Object}
* The manifest object
*/
Expand Down
4 changes: 2 additions & 2 deletions src/playlist-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const updateSegment = (a, b) => {

const result = mergeOptions(a, b);

// only the old segment has parts
// if only the old segment has parts
// then the parts are no longer valid
if (a.parts && !b.parts) {
delete result.parts;
Expand All @@ -55,7 +55,7 @@ export const updateSegment = (a, b) => {
/**
* Returns a new array of segments that is the result of merging
* properties from an older list of segments onto an updated
* list. No properties on the updated playlist will be overridden.
* list. No properties on the updated playlist will be ovewritten.
*
* @param {Array} original the outdated list of segments
* @param {Array} update the updated list of segments
Expand Down

0 comments on commit 82d83a7

Please sign in to comment.