Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrocaselani committed Jan 20, 2019
1 parent ee84ff8 commit 946dbfe
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CouchTrackerApp/MovieDetails/MovieDetailsModule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public final class MovieDetailsModule {
let configurationRepository = ConfigurationCachedRepository(tmdbProvider: tmdb)
let imageRespository = ImageCachedRepository(tmdb: tmdb,
tvdb: tvdb,
cofigurationRepository: configurationRepository,
configurationRepository: configurationRepository,
schedulers: schedulers)

let interactor = MovieDetailsService(repository: repository, genreRepository: genreRepository,
Expand Down
2 changes: 1 addition & 1 deletion CouchTrackerApp/Search/SearchModule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ enum SearchModule {

let imageRepository = ImageCachedRepository(tmdb: tmdb,
tvdb: tvdb,
cofigurationRepository: configurationRepository,
configurationRepository: configurationRepository,
schedulers: schedulers)

let posterCellInteractor = PosterCellService(imageRepository: imageRepository)
Expand Down
2 changes: 1 addition & 1 deletion CouchTrackerApp/Show/Episode/ShowEpisodeModule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ final class ShowEpisodeModule {

let imageRepository = ImageCachedRepository(tmdb: tmdb,
tvdb: tvdb,
cofigurationRepository: configurationRepository,
configurationRepository: configurationRepository,
schedulers: schedulers)

let showEpisodeNetwork = ShowEpisodeMoyaNetwork(trakt: trakt, schedulers: schedulers)
Expand Down
2 changes: 1 addition & 1 deletion CouchTrackerApp/Show/Overview/ShowOverviewModule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ final class ShowOverviewModule {
let configurationRepository = ConfigurationCachedRepository(tmdbProvider: tmdb)
let imageRepository = ImageCachedRepository(tmdb: tmdb,
tvdb: tvdb,
cofigurationRepository: configurationRepository,
configurationRepository: configurationRepository,
schedulers: schedulers)

let interactor = ShowOverviewService(showIds: showIds, repository: repository,
Expand Down
2 changes: 1 addition & 1 deletion CouchTrackerApp/Shows/Progress/ShowsProgressModule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ enum ShowsProgressModule {
let configurationRepository = ConfigurationCachedRepository(tmdbProvider: tmdb)
let imageRepository = ImageCachedRepository(tmdb: tmdb,
tvdb: tvdb,
cofigurationRepository: configurationRepository,
configurationRepository: configurationRepository,
schedulers: schedulers)

let listStateDataSource = ShowsProgressListStateDefaultDataSource(userDefaults: userDefaults)
Expand Down
2 changes: 1 addition & 1 deletion CouchTrackerApp/Trending/TrendingModule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ final class TrendingModule {
let configurationRepository = ConfigurationCachedRepository(tmdbProvider: tmdb)
let imageRepository = ImageCachedRepository(tmdb: tmdb,
tvdb: tvdb,
cofigurationRepository: configurationRepository,
configurationRepository: configurationRepository,
schedulers: schedulers)

let view = TrendingViewController()
Expand Down
4 changes: 2 additions & 2 deletions CouchTrackerCore/Images/ImageCachedRepository.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ public final class ImageCachedRepository: ImageRepository {

public init(tmdb: TMDBProvider,
tvdb: TVDBProvider,
cofigurationRepository: ConfigurationRepository,
configurationRepository: ConfigurationRepository,
schedulers: Schedulers) {
configurationRepository = cofigurationRepository
self.configurationRepository = configurationRepository
self.tmdb = tmdb
self.tvdb = tvdb
self.schedulers = schedulers
Expand Down

0 comments on commit 946dbfe

Please sign in to comment.