You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2017/05/18 18:20:11 UTC

[3/3] lucene-solr:master: Ref Guide: typos from conversion

Ref Guide: typos from conversion


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/b77a0a5a
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/b77a0a5a
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/b77a0a5a

Branch: refs/heads/master
Commit: b77a0a5ad51260e62a67fc2a5c239742863149d0
Parents: a786f2e
Author: Cassandra Targett <ca...@lucidworks.com>
Authored: Thu May 18 13:15:36 2017 -0500
Committer: Cassandra Targett <ca...@lucidworks.com>
Committed: Thu May 18 13:15:36 2017 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/the-terms-component.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/b77a0a5a/solr/solr-ref-guide/src/the-terms-component.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/the-terms-component.adoc b/solr/solr-ref-guide/src/the-terms-component.adoc
index 1625be2..f93bd66 100644
--- a/solr/solr-ref-guide/src/the-terms-component.adoc
+++ b/solr/solr-ref-guide/src/the-terms-component.adoc
@@ -53,7 +53,7 @@ Specifies the field from which to retrieve terms.
 Example: `terms.fl=title`
 
 |terms.list |No |null a|
-Fetches the document frequency for a comma delimited list of terms. Terms are always returned in index order. If '`terms.ttf`' is set to true, also returns their total term frequency. If multiple '`terms.fl`' are defined, these statistics will be returned for each term in each requested field.
+Fetches the document frequency for a comma delimited list of terms. Terms are always returned in index order. If `terms.ttf` is set to true, also returns their total term frequency. If multiple `terms.fl` are defined, these statistics will be returned for each term in each requested field.
 
 Example: `terms.list=termA,termB,termC`
 
@@ -113,12 +113,12 @@ Example: `terms.regex.flag=case_insensitive`
 
 |terms.stats |No |null |Include index statistics in the results. Currently returns only the *numDocs* for a collection. When combined with terms.list it provides enough information to compute idf for a list of terms.
 |terms.sort |No |count a|
-Defines how to sort the terms returned. Valid options are **count**, which sorts by the term frequency, with the highest term frequency first, or **index**, which sorts in index order.
+Defines how to sort the terms returned. Valid options are *count*, which sorts by the term frequency, with the highest term frequency first, or *index*, which sorts in index order.
 
 Example: `terms.sort=index`
 
 |terms.ttf |No |false a|
-If set to true, returns both 'df' (docFreq) and 'ttf' (totalTermFreq) statistics for each requested term in '`terms.list`'. In this case, the response format is:
+If set to true, returns both `df` (docFreq) and `ttf` (totalTermFreq) statistics for each requested term in `terms.list`. In this case, the response format is:
 
 [source,xml]
 ----