Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rubocop/cop/active_record_association_reload.rb')
-rw-r--r--rubocop/cop/active_record_association_reload.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/rubocop/cop/active_record_association_reload.rb b/rubocop/cop/active_record_association_reload.rb
index dc241cab7d0..eb9fc8a0246 100644
--- a/rubocop/cop/active_record_association_reload.rb
+++ b/rubocop/cop/active_record_association_reload.rb
@@ -5,7 +5,7 @@ module RuboCop
# Cop that blacklists the use of `reload`.
class ActiveRecordAssociationReload < RuboCop::Cop::Cop
MSG = 'Use reset instead of reload. ' \
- 'For more details check the https://gitlab.com/gitlab-org/gitlab-ce/issues/60218.'
+ 'For more details check the https://gitlab.com/gitlab-org/gitlab-foss/issues/60218.'
def_node_matcher :reload?, <<~PATTERN
(send _ :reload ...)