Skip to content

Commit ddb34c3

Browse files
authored
Merge pull request #1483 from mihailgaberov/patch-1
Fixed typo.
2 parents 0323af9 + cf206ab commit ddb34c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/player/player.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Player.prototype = {
6161
// Display the duration.
6262
duration.innerHTML = self.formatTime(Math.round(sound.duration()));
6363

64-
// Start upating the progress of the track.
64+
// Start updating the progress of the track.
6565
requestAnimationFrame(self.step.bind(self));
6666

6767
// Start the wave animation if we have already loaded
@@ -92,7 +92,7 @@ Player.prototype = {
9292
bar.style.display = 'block';
9393
},
9494
onseek: function() {
95-
// Start upating the progress of the track.
95+
// Start updating the progress of the track.
9696
requestAnimationFrame(self.step.bind(self));
9797
}
9898
});

0 commit comments

Comments
 (0)