This commit is contained in:
Ivan Smolin 2017-04-27 09:47:15 +03:00
parent bebef20e54
commit f9680dab9f
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ public extension UIView {
let nib = UINib(nibName: nibName, bundle: bundle)
guard let nibView = nib.instantiate(withOwner: owner, options: nil).first as? T else {
fatalError("Can't nstantiate nib view with type \(T.self)")
fatalError("Can't instantiate nib view with type \(T.self)")
}
return nibView