From 5f398ceb8987c474d56f2715a4cef5fcfd19812b Mon Sep 17 00:00:00 2001 From: Skye Book Date: Thu, 14 Dec 2017 11:13:03 -0600 Subject: [PATCH] docfix for assertion --- Sources/PagerTabStripViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/PagerTabStripViewController.swift b/Sources/PagerTabStripViewController.swift index 6ae787f..567731f 100644 --- a/Sources/PagerTabStripViewController.swift +++ b/Sources/PagerTabStripViewController.swift @@ -381,7 +381,7 @@ open class PagerTabStripViewController: UIViewController, UIScrollViewDelegate { guard !viewControllers.isEmpty else { fatalError("viewControllers(for:) should provide at least one child view controller") } - viewControllers.forEach { if !($0 is IndicatorInfoProvider) { fatalError("Every view controller provided by PagerTabStripDataSource's viewControllers(for:) method must conform to InfoProvider") }} + viewControllers.forEach { if !($0 is IndicatorInfoProvider) { fatalError("Every view controller provided by PagerTabStripDataSource's viewControllers(for:) method must conform to IndicatorInfoProvider") }} }