Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
slavaleleka committed Nov 2, 2022
1 parent 456f7c0 commit 4c18c35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/check-sources-updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ async function getCurrentABPSnippets() { // eslint-disable-line no-unused-vars
/**
* Checks for ABP Snippets updates
*/
async function checkForABPScriptletssUpdates() {
async function checkForABPScriptletsUpdates() {
const oldList = getScriptletsFromTable('abp');
// ABP_SNIPPETS_FILE is unavailable
// TODO: fix later, AG-11891
Expand Down Expand Up @@ -333,7 +333,7 @@ async function checkForABPRedirectsUpdates() {
const UBORedirectsDiff = await checkForUBORedirectsUpdates();
const UBOScriptletsDiff = await checkForUBOScriptletsUpdates();
const ABPRedirectsDiff = await checkForABPRedirectsUpdates();
const ABPScriptletsDiff = await checkForABPScriptletssUpdates();
const ABPScriptletsDiff = await checkForABPScriptletsUpdates();

if (UBORedirectsDiff) {
markTableWithDiff(UBORedirectsDiff, 'redirects', 'ubo');
Expand Down

0 comments on commit 4c18c35

Please sign in to comment.