Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Small documentation typo #28

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public interface SolrProductRepository extends SolrCrudRepository<Product, Strin
//Highlighting results
//Query will be "q=name:(<name...>)&hl=true&hl.fl=*"
@Highlight
HighlightPage<Product> findByNameIn(Collection<String> name, Page page);
HighlightPage<Product> findByNameIn(Collection<String> name, Pageable page);

//Spatial Search
//Query will be "q=location:[<bbox.start.latitude>,<bbox.start.longitude> TO <bbox.end.latitude>,<bbox.end.longitude>]"
Expand Down