summaryrefslogtreecommitdiff
path: root/rubocop
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-02-17 21:09:06 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-02-17 21:09:06 +0000
commit3e308768fd9306a49bb0149ca3636e8e8285485d (patch)
tree814b19f607218d670b0cfeccd5963d6320aec3d5 /rubocop
parentc0ef148ef349f0d13331638ab90f5d9e9d2175ba (diff)
downloadgitlab-ce-3e308768fd9306a49bb0149ca3636e8e8285485d.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'rubocop')
-rw-r--r--rubocop/cop/migration/add_columns_to_wide_tables.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/rubocop/cop/migration/add_columns_to_wide_tables.rb b/rubocop/cop/migration/add_columns_to_wide_tables.rb
index 2880783dc3e..41056379515 100644
--- a/rubocop/cop/migration/add_columns_to_wide_tables.rb
+++ b/rubocop/cop/migration/add_columns_to_wide_tables.rb
@@ -9,8 +9,8 @@ module RuboCop
class AddColumnsToWideTables < RuboCop::Cop::Cop
include MigrationHelpers
- MSG = '`%s` is a wide table with several columns, addig more should be avoided unless absolutely necessary.' \
- ' Consider storing the column in a different table or creating a new one.'.freeze
+ MSG = '`%s` is a wide table with several columns, adding more should be avoided unless absolutely necessary.' \
+ ' Consider storing the column in a different table or creating a new one.'
BLACKLISTED_METHODS = %i[
add_column