Skip to content

Commit 2673092

Browse files
committed
Fixed comments
1 parent 3b41dde commit 2673092

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/mediaelement-player.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
/**
22
* @file
33
*
4-
* Implementation of {@link Player} adapter based on the HTML5 media element.
4+
* Implementation of {@link Player} adapter based on an <code>&lt;audio&gt;</code>
5+
* or <code>&lt;video&gt;</code> HTML element.
56
*
67
* @module mediaelement-player
78
*/
89

910
/**
1011
* Checks whether the given HTMLMediaElement has either a src attribute
11-
* or any child <code>&lt;source&gt;</code> nodes
12+
* or any child <code>&lt;source&gt;</code> nodes.
1213
*/
1314

1415
function mediaElementHasSource(mediaElement) {
@@ -24,7 +25,7 @@ function mediaElementHasSource(mediaElement) {
2425
}
2526

2627
/**
27-
* A wrapper for interfacing with the HTML5 media element API.
28+
* A wrapper for interfacing with the HTMLMediaElement API.
2829
* Initializes the player for a given media element.
2930
*
3031
* @class

0 commit comments

Comments
 (0)