Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
renames unfilteredStyleGuideIDs to allStyleguideIds
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Gobbo committed Dec 18, 2020
1 parent 1be42a5 commit c7b8370
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/PrismCore/Prism.swift
Expand Up @@ -51,14 +51,14 @@ public class Prism {
}()

// Wait for styleguide IDs we wish to query
let (allStyleguideIDs, styleguideErrors) = getStyleguideIDs(for: owner)
let (allStyleguideIds, styleguideErrors) = getStyleguideIDs(for: owner)

errors.append(contentsOf: styleguideErrors)

// Get text styles, colors and spacing separately
// for each styleguide

let styleguideIDs = unfilteredStyleguideIDs.filter { id in !ignoredStyleGuideIds.contains(id) }
let styleguideIDs = allStyleguideIds.filter { id in !ignoredStyleGuideIds.contains(id) }

for styleguideID in styleguideIDs {
group.enter()
Expand Down

0 comments on commit c7b8370

Please sign in to comment.