This is an automated email from the ASF dual-hosted git repository.

cpoerschke pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 7e3fe32b2e1 remove some stray backticks in Solr Ref Guide (#3622)
7e3fe32b2e1 is described below

commit 7e3fe32b2e1a176bb29a33a1e92483c5c73e328a
Author: Christine Poerschke <[email protected]>
AuthorDate: Mon Sep 8 17:13:45 2025 +0100

    remove some stray backticks in Solr Ref Guide (#3622)
    
    * remove stray back-tick in tutorial-films.adoc
    
    * remove stray back-tick in rate-limiters.adoc
    
    * remove stray back-tick in indexing-nested-documents.adoc
    
    * add missing back-tick in searching-nested-documents.adoc
    
    (cherry picked from commit d3bc13273b7f70c685de9fd9bce6d3fc7c202001)
---
 solr/solr-ref-guide/modules/deployment-guide/pages/rate-limiters.adoc   | 2 +-
 solr/solr-ref-guide/modules/getting-started/pages/tutorial-films.adoc   | 2 +-
 .../modules/indexing-guide/pages/indexing-nested-documents.adoc         | 2 +-
 .../modules/query-guide/pages/searching-nested-documents.adoc           | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/solr/solr-ref-guide/modules/deployment-guide/pages/rate-limiters.adoc 
b/solr/solr-ref-guide/modules/deployment-guide/pages/rate-limiters.adoc
index 66268a1f998..835802e4054 100644
--- a/solr/solr-ref-guide/modules/deployment-guide/pages/rate-limiters.adoc
+++ b/solr/solr-ref-guide/modules/deployment-guide/pages/rate-limiters.adoc
@@ -28,7 +28,7 @@ There is future work planned to have finer grained execution 
here (https://issue
 
 The rate-limiting bucket of a request is determined by the value of the unique 
`Solr-Request-Type` HTTP header of
 that request. Requests with no `Solr-Request-Type` header will be accepted and 
processed with no rate-limiting.
-`"Slot borrowing" and "guaranteed slots" are defined with respect to the 
specified rate-limiting bucket.
+"Slot borrowing" and "guaranteed slots" are defined with respect to the 
specified rate-limiting bucket.
 
 NOTE: currently there is only one `Solr-Request-Type` value recognized for 
rate-limiting: the literal
 string value `QUERY`. So only requests that specify header `Solr-Request-Type: 
QUERY` will be rate-limited (and
diff --git 
a/solr/solr-ref-guide/modules/getting-started/pages/tutorial-films.adoc 
b/solr/solr-ref-guide/modules/getting-started/pages/tutorial-films.adoc
index be890c5f39d..f3040b0d100 100644
--- a/solr/solr-ref-guide/modules/getting-started/pages/tutorial-films.adoc
+++ b/solr/solr-ref-guide/modules/getting-started/pages/tutorial-films.adoc
@@ -301,7 +301,7 @@ The `curl` command below will return facet counts for the 
`genre_str` field:
 
 [,console]
 ----
-$ curl 
"http://localhost:8983/solr/films/select?q=\*:*&rows=0&facet=true&facet.field=genre_str"`
+$ curl 
"http://localhost:8983/solr/films/select?q=\*:*&rows=0&facet=true&facet.field=genre_str";
 ----
 
 In your terminal, you'll see something like:
diff --git 
a/solr/solr-ref-guide/modules/indexing-guide/pages/indexing-nested-documents.adoc
 
b/solr/solr-ref-guide/modules/indexing-guide/pages/indexing-nested-documents.adoc
index fedb60d7e3e..e64fc97f84a 100644
--- 
a/solr/solr-ref-guide/modules/indexing-guide/pages/indexing-nested-documents.adoc
+++ 
b/solr/solr-ref-guide/modules/indexing-guide/pages/indexing-nested-documents.adoc
@@ -243,7 +243,7 @@ Preferably, you will also define `\_nest_path_` which adds 
features and ease-of-
 [source,xml]
 ----
 <fieldType name="_nest_path_" class="solr.NestPathField" />
-<field name="_nest_path_" type="_nest_path_" />`
+<field name="_nest_path_" type="_nest_path_" />
 ----
 
 * Solr automatically populates this field for any child document but not root 
documents.
diff --git 
a/solr/solr-ref-guide/modules/query-guide/pages/searching-nested-documents.adoc 
b/solr/solr-ref-guide/modules/query-guide/pages/searching-nested-documents.adoc
index 124dce3b6de..92a99b4d1db 100644
--- 
a/solr/solr-ref-guide/modules/query-guide/pages/searching-nested-documents.adoc
+++ 
b/solr/solr-ref-guide/modules/query-guide/pages/searching-nested-documents.adoc
@@ -267,7 +267,7 @@ Note that in the above example, the `/` characters in the 
`\_nest_path_` were "d
 
 === Combining Block Join Query Parsers with Child Doc Transformer
 
-The combination of these two parsers with the `[child] transformer enables 
seamless creation of very powerful queries.
+The combination of these two parsers with the `[child]` transformer enables 
seamless creation of very powerful queries.
 
 Here for example is a query where:
 

Reply via email to