Commit 2002ad395db449c6767e7a96180a27b611a21f81
1 parent
ec935570
Exists in
master
and in
17 other branches
Updated comment [skip ci]
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
lib/searchkick/query.rb
... | ... | @@ -1011,14 +1011,14 @@ module Searchkick |
1011 | 1011 | if source.start_with?("\\A") |
1012 | 1012 | source = source[2..-1] |
1013 | 1013 | else |
1014 | - # TODO uncomment in future release | |
1014 | + # TODO uncomment in Searchkick 5 | |
1015 | 1015 | # source = ".*#{source}" |
1016 | 1016 | end |
1017 | 1017 | |
1018 | 1018 | if source.end_with?("\\z") |
1019 | 1019 | source = source[0..-3] |
1020 | 1020 | else |
1021 | - # TODO uncomment in future release | |
1021 | + # TODO uncomment in Searchkick 5 | |
1022 | 1022 | # source = "#{source}.*" |
1023 | 1023 | end |
1024 | 1024 | ... | ... |