Commit 725eef04a2a98ab03779ed153af3971a091e4b03

Authored by Andrew Kane
1 parent 966894ea

Use pop and soda as example [skip ci]

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
README.md
... ... @@ -10,7 +10,7 @@ Searchkick handles:
10 10 - special characters - `jalapeno` matches `jalapeño`
11 11 - extra whitespace - `dishwasher` matches `dish washer`
12 12 - misspellings - `zuchini` matches `zucchini`
13   -- custom synonyms - `qtip` matches `cotton swab`
  13 +- custom synonyms - `pop` matches `soda`
14 14  
15 15 Plus:
16 16  
... ... @@ -318,7 +318,7 @@ A few languages require plugins:
318 318  
319 319 ```ruby
320 320 class Product < ApplicationRecord
321   - searchkick synonyms: [["burger", "hamburger"], ["sneakers", "shoes"]]
  321 + searchkick synonyms: [["pop", "soda"], ["burger", "hamburger"]]
322 322 end
323 323 ```
324 324  
... ...