lib/picky/search.rb in picky-3.6.13 vs lib/picky/search.rb in picky-3.6.14

- old
+ new

@@ -3,12 +3,12 @@ module Picky # = Picky Searches # # A Picky Search is an object which: - # * holds one or more indexes - # * offers an interface to query these indexes. + # * holds one or more indexes + # * offers an interface to query these indexes. # # You connect URL paths to indexes via a Query. # # We recommend to not use this directly, but connect it to an URL and query through one of these # (Protip: Use "curl 'localhost:8080/query/path?query=exampletext')" in a Terminal. @@ -82,17 +82,17 @@ # Tells Picky to terminate calculating ids if it has enough ids. # (So, early) # # Important note: Do not use this for the live search! - # (As Picky needs to calculate the total) + # (As Picky needs to calculate the total) # # Note: When using the Picky interface, do not terminate too - # early as this will kill off the allocation selections. - # A value of - # early_terminate 5 - # is probably a good idea to show the user 5 extra - # beyond the needed ones. + # early as this will kill off the allocation selections. + # A value of + # early_terminate 5 + # is probably a good idea to show the user 5 extra + # beyond the needed ones. # # Examples: # # Terminate if you have enough ids. # # # search = Search.new(index1, index2, index3) do \ No newline at end of file