From fd4019630f39ccc5009ff69626590bf0af530c2b Mon Sep 17 00:00:00 2001 From: Alexander Griesser <46035328+anx-ag@users.noreply.github.com> Date: Fri, 6 Jan 2023 07:49:11 +0100 Subject: [PATCH] Remove superfluous "channel" in comment (#21887) Automatic Merge --- store/sqlstore/channel_store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/sqlstore/channel_store.go b/store/sqlstore/channel_store.go index ca7575924a..5d6b9e83f3 100644 --- a/store/sqlstore/channel_store.go +++ b/store/sqlstore/channel_store.go @@ -577,7 +577,7 @@ func (s SqlChannelStore) upsertPublicChannelT(transaction *sqlxTxWrapper, channe return nil } -// Save writes the (non-direct) channel channel to the database. +// Save writes the (non-direct) channel to the database. func (s SqlChannelStore) Save(channel *model.Channel, maxChannelsPerTeam int64) (_ *model.Channel, err error) { if channel.DeleteAt != 0 { return nil, store.NewErrInvalidInput("Channel", "DeleteAt", channel.DeleteAt)