@@ -449,7 +449,7 @@ class Tech extends Component {
449449 * Returns the `TimeRange`s that have been played through for the current source.
450450 *
451451 * > NOTE: This implementation is incomplete. It does not track the played `TimeRange`.
452- * It only checks wether the source has played at all or not.
452+ * It only checks whether the source has played at all or not.
453453 *
454454 * @return {TimeRange }
455455 * - A single time range if this video has played
@@ -772,14 +772,14 @@ class Tech extends Component {
772772 setPoster ( ) { }
773773
774774 /**
775- * A method to check for the presence of the 'playsinine ' <video> attribute.
775+ * A method to check for the presence of the 'playsinline ' <video> attribute.
776776 *
777777 * @abstract
778778 */
779779 playsinline ( ) { }
780780
781781 /**
782- * A method to set or unset the 'playsinine ' <video> attribute.
782+ * A method to set or unset the 'playsinline ' <video> attribute.
783783 *
784784 * @abstract
785785 */
@@ -891,7 +891,7 @@ class Tech extends Component {
891891 * `camelCase` or `TitleCase` name of the Tech to get
892892 *
893893 * @return {Tech|undefined }
894- * The `Tech` or undefined if there was no tech with the name requsted .
894+ * The `Tech` or undefined if there was no tech with the name requested .
895895 */
896896 static getTech ( name ) {
897897 if ( ! name ) {
@@ -980,15 +980,15 @@ TRACK_TYPES.ALL.names.forEach(function(name) {
980980 */
981981
982982/**
983- * Boolean indicating wether the `Tech` supports volume control.
983+ * Boolean indicating whether the `Tech` supports volume control.
984984 *
985985 * @type {boolean }
986986 * @default
987987 */
988988Tech . prototype . featuresVolumeControl = true ;
989989
990990/**
991- * Boolean indicating wether the `Tech` support fullscreen resize control.
991+ * Boolean indicating whether the `Tech` supports fullscreen resize control.
992992 * Resizing plugins using request fullscreen reloads the plugin
993993 *
994994 * @type {boolean }
@@ -997,7 +997,7 @@ Tech.prototype.featuresVolumeControl = true;
997997Tech . prototype . featuresFullscreenResize = false ;
998998
999999/**
1000- * Boolean indicating wether the `Tech` supports changing the speed at which the video
1000+ * Boolean indicating whether the `Tech` supports changing the speed at which the video
10011001 * plays. Examples:
10021002 * - Set player to play 2x (twice) as fast
10031003 * - Set player to play 0.5x (half) as fast
@@ -1008,7 +1008,7 @@ Tech.prototype.featuresFullscreenResize = false;
10081008Tech . prototype . featuresPlaybackRate = false ;
10091009
10101010/**
1011- * Boolean indicating wether the `Tech` supports the `progress` event. This is currently
1011+ * Boolean indicating whether the `Tech` supports the `progress` event. This is currently
10121012 * not triggered by video-js-swf. This will be used to determine if
10131013 * {@link Tech#manualProgressOn} should be called.
10141014 *
@@ -1018,7 +1018,7 @@ Tech.prototype.featuresPlaybackRate = false;
10181018Tech . prototype . featuresProgressEvents = false ;
10191019
10201020/**
1021- * Boolean indicating wether the `Tech` supports the `sourceset` event.
1021+ * Boolean indicating whether the `Tech` supports the `sourceset` event.
10221022 *
10231023 * A tech should set this to `true` and then use {@link Tech#triggerSourceset}
10241024 * to trigger a {@link Tech#event:sourceset} at the earliest time after getting
@@ -1030,7 +1030,7 @@ Tech.prototype.featuresProgressEvents = false;
10301030Tech . prototype . featuresSourceset = false ;
10311031
10321032/**
1033- * Boolean indicating wether the `Tech` supports the `timeupdate` event. This is currently
1033+ * Boolean indicating whether the `Tech` supports the `timeupdate` event. This is currently
10341034 * not triggered by video-js-swf. This will be used to determine if
10351035 * {@link Tech#manualTimeUpdates} should be called.
10361036 *
@@ -1040,7 +1040,7 @@ Tech.prototype.featuresSourceset = false;
10401040Tech . prototype . featuresTimeupdateEvents = false ;
10411041
10421042/**
1043- * Boolean indicating wether the `Tech` supports the native `TextTrack`s.
1043+ * Boolean indicating whether the `Tech` supports the native `TextTrack`s.
10441044 * This will help us integrate with native `TextTrack`s if the browser supports them.
10451045 *
10461046 * @type {boolean }
0 commit comments