diff options
author | Ajay Ramachandran <[email protected]> | 2021-12-04 22:18:53 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-04 22:18:53 -0500 |
commit | 44de741e84eb8ab6fbc17b8b465a2aec184d79ec (patch) | |
tree | 6102b5e212ee437f5c25e3370dd2fd518560962b | |
parent | 2f8ec7a5e5402a6e73fae3b2500930c9cc8d2ed5 (diff) | |
parent | eaa47c8d40f3706bbbdea73d80cf56f71b9134a3 (diff) | |
download | SponsorBlock-44de741e84eb8ab6fbc17b8b465a2aec184d79ec.tar.gz SponsorBlock-44de741e84eb8ab6fbc17b8b465a2aec184d79ec.zip |
Merge pull request #1072 from Choromanski/feature/updated-comments
Changed comments from seconds and hours to minutes
-rw-r--r-- | src/popup.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/popup.ts b/src/popup.ts index 41bf1062..bca6286d 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -731,10 +731,10 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> { } /** - * Converts time in hours to 5h 25.1 + * Converts time in minutes to 5h 25.1 * If less than 1 hour, just returns minutes * - * @param {float} seconds + * @param {float} minutes * @returns {string} */ function getFormattedHours(minutes) { |