]> source.dussan.org Git - redmine.git/commitdiff
code cleanup: rubocop: fix Style/AsciiComments in lib/redmine/search.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 9 Oct 2019 02:05:37 +0000 (02:05 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 9 Oct 2019 02:05:37 +0000 (02:05 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@18631 e93f8b46-1217-0410-a6f0-8f06a7374b81

.rubocop_todo.yml
lib/redmine/search.rb

index b6f59ffcff8838127bc864bcc246eac966fcfc8e..424e7ffcbb1b89e0aa3ea275d207e932740e549e 100644 (file)
@@ -992,7 +992,6 @@ Style/AndOr:
 Style/AsciiComments:
   Exclude:
     - 'app/models/repository/git.rb'
-    - 'lib/redmine/search.rb'
 
 # Cop supports --auto-correct.
 # Configuration parameters: EnforcedStyle.
index 0f80c890862889bedfed0ba8b0d717131e2bb04b..17968e9596e7e135851fb2a88309d8945af283d4 100644 (file)
@@ -62,7 +62,7 @@ module Redmine
         # eg. hello "bye bye" => ["hello", "bye bye"]
         @tokens = @question.scan(%r{((\s|^)"[^"]+"(\s|$)|\S+)}).collect {|m| m.first.gsub(%r{(^\s*"\s*|\s*"\s*$)}, '')}
         # tokens must be at least 2 characters long
-        # but for Chinese characters (汉字/漢字), tokens can be one character
+        # but for Chinese characters (Chinese HANZI/Japanese KANJI), tokens can be one character
         @tokens = @tokens.uniq.select {|w| w.length > 1 || w =~ /\p{Han}/ }
         # no more than 5 tokens to search for
         @tokens.slice! 5..-1