From 88da06cba077e36f2d639dbe88a8dd3bca84a210 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Wed, 30 Jun 2021 23:38:14 +0900 Subject: [PATCH] FIX: typo in discourse occurences -> occurrences --- script/discourse | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/discourse b/script/discourse index 32b0bb30221..1d4e4ff702c 100755 --- a/script/discourse +++ b/script/discourse @@ -34,9 +34,9 @@ class DiscourseCLI < Thor require 'db_helper' if options[:regex] - puts "Rewriting all occurences of #{from} to #{to} using regexp_replace" + puts "Rewriting all occurrences of #{from} to #{to} using regexp_replace" else - puts "Rewriting all occurences of #{from} to #{to}" + puts "Rewriting all occurrences of #{from} to #{to}" end puts "THIS TASK WILL REWRITE DATA, ARE YOU SURE (type YES)" puts "WILL RUN ON ALL #{RailsMultisite::ConnectionManagement.all_dbs.length} DBS" if options[:global]