diff --git a/Sources/FactoryMethod/RealWorld/Example.swift b/Sources/FactoryMethod/RealWorld/Example.swift index b396380..d9dd65e 100644 --- a/Sources/FactoryMethod/RealWorld/Example.swift +++ b/Sources/FactoryMethod/RealWorld/Example.swift @@ -71,7 +71,7 @@ extension Projector { /// Base implementation of Projector methods func sync(with projector: Projector) { - projector.update(with: currentPage) + update(with: projector.currentPage) } }