diff options
| author | crobibero <cody@robibe.ro> | 2021-05-15 15:33:50 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2021-05-15 15:33:50 -0600 |
| commit | b6dda30a33e7ea3465629e041be74b3e9022d810 (patch) | |
| tree | f54892f6c62419b97edc052e6ae2658108e15a87 /MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs | |
| parent | 6bcbc2b88ae84b1d7cfc50f0872580bed437a60f (diff) | |
Fix suggestions from review
Diffstat (limited to 'MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs b/MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs index 6820d9222..dbba7cba2 100644 --- a/MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs +++ b/MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs @@ -15,7 +15,7 @@ namespace MediaBrowser.Controller.Channels /// </summary> /// <param name="request">The request.</param> /// <param name="cancellationToken">The cancellation token.</param> - /// <returns>Task{IEnumerable{ChannelItemInfo}}.</returns> + /// <returns>The latest media.</returns> Task<IEnumerable<ChannelItemInfo>> GetLatestMedia(ChannelLatestMediaSearch request, CancellationToken cancellationToken); } }
\ No newline at end of file |
