Skip to content

Commit

Permalink
docs(tech): fix misspellings (#5059)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maysjtu authored and gkatsev committed Mar 29, 2018
1 parent 4d3331e commit 96987f8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/js/tech/tech.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ class Tech extends Component {
* Returns the `TimeRange`s that have been played through for the current source.
*
* > NOTE: This implementation is incomplete. It does not track the played `TimeRange`.
* It only checks wether the source has played at all or not.
* It only checks whether the source has played at all or not.
*
* @return {TimeRange}
* - A single time range if this video has played
Expand Down Expand Up @@ -772,14 +772,14 @@ class Tech extends Component {
setPoster() {}

/**
* A method to check for the presence of the 'playsinine' <video> attribute.
* A method to check for the presence of the 'playsinline' <video> attribute.
*
* @abstract
*/
playsinline() {}

/**
* A method to set or unset the 'playsinine' <video> attribute.
* A method to set or unset the 'playsinline' <video> attribute.
*
* @abstract
*/
Expand Down Expand Up @@ -891,7 +891,7 @@ class Tech extends Component {
* `camelCase` or `TitleCase` name of the Tech to get
*
* @return {Tech|undefined}
* The `Tech` or undefined if there was no tech with the name requsted.
* The `Tech` or undefined if there was no tech with the name requested.
*/
static getTech(name) {
if (!name) {
Expand Down Expand Up @@ -980,15 +980,15 @@ TRACK_TYPES.ALL.names.forEach(function(name) {
*/

/**
* Boolean indicating wether the `Tech` supports volume control.
* Boolean indicating whether the `Tech` supports volume control.
*
* @type {boolean}
* @default
*/
Tech.prototype.featuresVolumeControl = true;

/**
* Boolean indicating wether the `Tech` support fullscreen resize control.
* Boolean indicating whether the `Tech` supports fullscreen resize control.
* Resizing plugins using request fullscreen reloads the plugin
*
* @type {boolean}
Expand All @@ -997,7 +997,7 @@ Tech.prototype.featuresVolumeControl = true;
Tech.prototype.featuresFullscreenResize = false;

/**
* Boolean indicating wether the `Tech` supports changing the speed at which the video
* Boolean indicating whether the `Tech` supports changing the speed at which the video
* plays. Examples:
* - Set player to play 2x (twice) as fast
* - Set player to play 0.5x (half) as fast
Expand All @@ -1008,7 +1008,7 @@ Tech.prototype.featuresFullscreenResize = false;
Tech.prototype.featuresPlaybackRate = false;

/**
* Boolean indicating wether the `Tech` supports the `progress` event. This is currently
* Boolean indicating whether the `Tech` supports the `progress` event. This is currently
* not triggered by video-js-swf. This will be used to determine if
* {@link Tech#manualProgressOn} should be called.
*
Expand All @@ -1018,7 +1018,7 @@ Tech.prototype.featuresPlaybackRate = false;
Tech.prototype.featuresProgressEvents = false;

/**
* Boolean indicating wether the `Tech` supports the `sourceset` event.
* Boolean indicating whether the `Tech` supports the `sourceset` event.
*
* A tech should set this to `true` and then use {@link Tech#triggerSourceset}
* to trigger a {@link Tech#event:sourceset} at the earliest time after getting
Expand All @@ -1030,7 +1030,7 @@ Tech.prototype.featuresProgressEvents = false;
Tech.prototype.featuresSourceset = false;

/**
* Boolean indicating wether the `Tech` supports the `timeupdate` event. This is currently
* Boolean indicating whether the `Tech` supports the `timeupdate` event. This is currently
* not triggered by video-js-swf. This will be used to determine if
* {@link Tech#manualTimeUpdates} should be called.
*
Expand All @@ -1040,7 +1040,7 @@ Tech.prototype.featuresSourceset = false;
Tech.prototype.featuresTimeupdateEvents = false;

/**
* Boolean indicating wether the `Tech` supports the native `TextTrack`s.
* Boolean indicating whether the `Tech` supports the native `TextTrack`s.
* This will help us integrate with native `TextTrack`s if the browser supports them.
*
* @type {boolean}
Expand Down

0 comments on commit 96987f8

Please sign in to comment.