Skip to content
This repository was archived by the owner on Jan 31, 2022. It is now read-only.

Commit 38f6543

Browse files
author
Xavier Grand
committed
Remove duplicate allowTyposForNumericToken
1 parent 141f79d commit 38f6543

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Table of Contents
2222

2323
1. [Setup](#setup)
2424
1. [Quick Start](#quick-start)
25+
2526
1. [Online documentation](#documentation)
2627
1. [Tutorials](#tutorials)
2728

@@ -54,6 +55,7 @@ To setup your project, follow these steps:
5455

5556

5657

58+
5759
1. Download the latest version from **JCenter**
5860
2. Initialize the client with your Application ID and API Key. You can find them on [your Algolia account](http://www.algolia.com/users/edit).
5961
3. Make your Activity class implement the listener interface that you need to be able to use the asynchronous methods (APIClientListener, SearchListener, IndexingListener, ...).
@@ -140,6 +142,8 @@ index.searchASync(new Query("jim"), this);
140142

141143

142144

145+
146+
143147
Documentation
144148
================
145149
Check our [online documentation](http://www.algolia.com/doc/guides/android):
@@ -301,7 +305,6 @@ You can use the following optional arguments:
301305
* **REMOVE_NONE**: No specific processing is done when a query does not return any results (default behavior).
302306
* **setMinWordSizeToAllowOneTypo**: The minimum number of characters in a query word to accept one typo in this word.<br/>Defaults to 4.
303307
* **setMinWordSizeToAllowTwoTypos**: The minimum number of characters in a query word to accept two typos in this word.<br/>Defaults to 8.
304-
* **enableTyposOnNumericTokens**: If set to false, it disables typo tolerance on numeric tokens (numbers). Defaults to false.
305308
* **setTypoTolerance**: This option allows you to control the number of typos in the result set:
306309
* **TYPO_TRUE**: The typo tolerance is enabled and all matching hits are retrieved (default behavior).
307310
* **TYPO_FALSE**: The typo tolerance is disabled. For example, if one result matches without typos, then all results with typos will be hidden.
@@ -566,7 +569,7 @@ You can decide to have the same priority for two attributes by passing them in t
566569
* **advancedSyntax**: Enable the advanced query syntax. Defaults to 0 (false).
567570

568571
* **Phrase query:** a phrase query defines a particular sequence of terms. A phrase query is build by Algolia's query parser for words surrounded by `"`. For example, `"search engine"` will retrieve records having `search` next to `engine` only. Typo-tolerance is disabled on phrase queries.
569-
572+
570573
* **Prohibit operator:** The prohibit operator excludes records that contain the term after the `-` symbol. For example `search -engine` will retrieve records containing `search` but not `engine`.
571574
* **replaceSynonymsInHighlight**: (boolean) If set to false, words matched via synonyms expansion will not be replaced by the matched synonym in the highlighted result. Default to true.
572575
* **maxValuesPerFacet**: (integer) Limit the number of facet values returned for each facet. For example: `maxValuesPerFacet=10` will retrieve max 10 values per facet.
@@ -838,3 +841,5 @@ client.getLogsASync(0, 100, LogType.LOG_ERROR, this);
838841

839842

840843

844+
845+

0 commit comments

Comments
 (0)