Commit cb3b02c13c1c9056a705de35ddee339ad57a34b2
Committed by
Andrew Kane
1 parent
8fb84458
Exists in
master
and in
21 other branches
fix typo in query (#726)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/searchkick/query.rb
... | ... | @@ -160,7 +160,7 @@ module Searchkick |
160 | 160 | padding = [options[:padding].to_i, 0].max |
161 | 161 | offset = options[:offset] || (page - 1) * per_page + padding |
162 | 162 | |
163 | - # model and eagar loading | |
163 | + # model and eager loading | |
164 | 164 | load = options[:load].nil? ? true : options[:load] |
165 | 165 | |
166 | 166 | conversions_fields = Array(options[:conversions] || searchkick_options[:conversions]) | ... | ... |