Commit 33825cfba97bbc8e81895ea7bb406580ed789265

Authored by Andrew Kane
1 parent e2945d9f

Removed [master] from docs

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
README.md
... ... @@ -303,7 +303,7 @@ You can change this with:
303 303 Product.search "zucini", misspellings: {edit_distance: 2} # zucchini
304 304 ```
305 305  
306   -To improve performance for correctly spelled queries (which should be a majority for most applications), Searchkick can first perform a search without misspellings, and if there are few results, perform another with them. [master]
  306 +To improve performance for correctly spelled queries (which should be a majority for most applications), Searchkick can first perform a search without misspellings, and if there are few results, perform another with them.
307 307  
308 308 ```ruby
309 309 Product.search "zuchini", misspellings: {below: 5}
... ... @@ -1147,7 +1147,7 @@ class Product < ActiveRecord::Base
1147 1147 end
1148 1148 ```
1149 1149  
1150   -Use [Okapi BM25](https://www.elastic.co/guide/en/elasticsearch/guide/current/pluggable-similarites.html) for ranking [master]
  1150 +Use [Okapi BM25](https://www.elastic.co/guide/en/elasticsearch/guide/current/pluggable-similarites.html) for ranking
1151 1151  
1152 1152 ```ruby
1153 1153 class Product < ActiveRecord::Base
... ...