Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.

Commit

Permalink
minor typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hugolpz committed Sep 19, 2018
1 parent 3349cbb commit 429b1f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/youtube-dl.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ ytdl.getSubs = function getSubs(url, options, callback) {
* {String} cwd
* @param {Function(!Error, Object)} callback
*/
ytdl.getThumbs = function getSubs(url, options, callback) {
ytdl.getThumbs = function getThumbs(url, options, callback) {
'use strict';
if (typeof options === 'function') {
callback = options;
Expand Down Expand Up @@ -417,4 +417,4 @@ ytdl.getExtractors = function getExtractors(descriptions, options, callback) {

var args = descriptions ? ['--extractor-descriptions'] : ['--list-extractors'];
call(null, args, null, options, callback);
};
};

0 comments on commit 429b1f7

Please sign in to comment.