Skip to content

Commit

Permalink
Avoiding lines > 80 chars.
Browse files Browse the repository at this point in the history
  • Loading branch information
pat committed Oct 9, 2014
1 parent 6040da7 commit 143d504
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/thinking_sphinx/active_record/base.rb
Expand Up @@ -25,7 +25,9 @@ def search_count(query = nil, options = {})
end

def search_for_ids(query = nil, options = {})
ThinkingSphinx::Search::Merger.new(search(query, options)).merge! nil, :ids_only => true
ThinkingSphinx::Search::Merger.new(
search(query, options)
).merge! nil, :ids_only => true
end

private
Expand Down

1 comment on commit 143d504

@parndt
Copy link
Contributor

@parndt parndt commented on 143d504 Oct 9, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😉

Please sign in to comment.