From 4cd8d6b00f41d1d4d9d281655e1d0fa2445de854 Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Fri, 1 Apr 2022 13:19:22 +0530 Subject: [PATCH] Apply suggestions from code review --- packages/stream_chat/lib/src/core/models/channel_mute.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/stream_chat/lib/src/core/models/channel_mute.dart b/packages/stream_chat/lib/src/core/models/channel_mute.dart index 67410afc..31c07f0e 100644 --- a/packages/stream_chat/lib/src/core/models/channel_mute.dart +++ b/packages/stream_chat/lib/src/core/models/channel_mute.dart @@ -4,7 +4,7 @@ import 'package:stream_chat/src/core/models/user.dart'; part 'channel_mute.g.dart'; -/// The class that contains the information about a muted user +/// The class that contains the information about a muted channel @JsonSerializable(createToJson: false) class ChannelMute { /// Constructor used for json serialization @@ -23,7 +23,7 @@ class ChannelMute { /// The user that performed the muting action final User user; - /// The target user + /// The target channel final ChannelModel channel; /// The date in which the use was muted