diff --git a/src/mediaelement-player.js b/src/mediaelement-player.js index f9754664..1ccabdde 100644 --- a/src/mediaelement-player.js +++ b/src/mediaelement-player.js @@ -1,14 +1,15 @@ /** * @file * - * Implementation of {@link Player} adapter based on the HTML5 media element. + * Implementation of {@link Player} adapter based on an <audio> + * or <video> HTML element. * * @module mediaelement-player */ /** * Checks whether the given HTMLMediaElement has either a src attribute - * or any child <source> nodes + * or any child <source> nodes. */ function mediaElementHasSource(mediaElement) { @@ -24,7 +25,7 @@ function mediaElementHasSource(mediaElement) { } /** - * A wrapper for interfacing with the HTML5 media element API. + * A wrapper for interfacing with the HTMLMediaElement API. * Initializes the player for a given media element. * * @class