Skip to content

Commit 6c759bb

Browse files
authored
Fix typos in Scrum Helper user-facing strings (#410)
* Fix Typos * Resolve Conversations
1 parent 3cd9d90 commit 6c759bb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/scripts/scrumHelper.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ function allIncluded(outputTarget = 'email') {
411411
logError('Storage save failed: ', chrome.runtime.lastError);
412412
resolve(false);
413413
} else {
414-
log('Cache saved successfuly');
414+
log('Cache saved successfully');
415415
githubCache.data = data;
416416
githubCache.subject = subject;
417417
resolve(true);
@@ -899,10 +899,10 @@ function allIncluded(outputTarget = 'email') {
899899
});
900900
githubCache.repoQueue = [];
901901

902-
log(`Successfuly cached ${repos.length} repositories`);
902+
log(`Successfully cached ${repos.length} repositories`);
903903
return repos;
904904
} catch (err) {
905-
logError('Failed to fetch reppos:', err);
905+
logError('Failed to fetch repos:', err);
906906
githubCache.repoQueue.forEach(({ reject }) => {
907907
reject(err);
908908
});
@@ -2023,7 +2023,7 @@ async function fetchUserRepositories(username, token, org = '') {
20232023
console.log(`Found ${repoNames.length} unique repositories with contributions in the selected date range`);
20242024

20252025
if (repoNames.length === 0) {
2026-
console.log(`No repositories with contrbutions found in the selected date range`);
2026+
console.log(`No repositories with contributions found in the selected date range`);
20272027
return [];
20282028
}
20292029

0 commit comments

Comments
 (0)