Add trailing newlines to example code

This commit is contained in:
Chives
2020-02-29 04:30:03 -05:00
parent 93ad31e0af
commit 6440ca434d
2 changed files with 2 additions and 2 deletions

View File

@@ -19,4 +19,4 @@ Player.prototype.resume = function() {
Player.prototype.makeFavorite = function() {
this.currentlyPlayingSong.persistFavoriteStatus(true);
};
};

View File

@@ -4,4 +4,4 @@ function Song() {
Song.prototype.persistFavoriteStatus = function(value) {
// something complicated
throw new Error("not yet implemented");
};
};