From 3437eb27c62dfb36d8e6de74617b3b210c723d30 Mon Sep 17 00:00:00 2001 From: Ayoub Belemlih Date: Thu, 28 Feb 2019 15:24:54 -0600 Subject: [PATCH] Fix documentation error within MessagesDataSource.swift --- Sources/Protocols/MessagesDataSource.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Protocols/MessagesDataSource.swift b/Sources/Protocols/MessagesDataSource.swift index 3caba08b..a9d35d80 100644 --- a/Sources/Protocols/MessagesDataSource.swift +++ b/Sources/Protocols/MessagesDataSource.swift @@ -101,7 +101,7 @@ public protocol MessagesDataSource: AnyObject { /// - messagesCollectionView: The `MessagesCollectionView` in which this cell will be displayed. /// /// - Note: - /// This method will call fatalError() on default. You must override this method if you are using MessageType.custom messages. + /// This method will call fatalError() on default. You must override this method if you are using MessageKind.custom messages. func customCell(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> UICollectionViewCell }