diff --git a/solr/solr-ref-guide/src/collections-api.adoc b/solr/solr-ref-guide/src/collections-api.adoc index 58922c5efef..c266f964fa2 100644 --- a/solr/solr-ref-guide/src/collections-api.adoc +++ b/solr/solr-ref-guide/src/collections-api.adoc @@ -156,11 +156,11 @@ http://localhost:8983/solr/admin/collections?action=CREATE&name=newCollection&nu [[modifycollection]] == MODIFYCOLLECTION: Modify Attributes of a Collection -`/admin/collections?action=MODIFYCOLLECTION&collection=_&=&=_&=` +`/admin/collections?action=MODIFYCOLLECTION&collection=__&____=____&____=____&____=` It's possible to edit multiple attributes at a time. Changing these values only updates the z-node on ZooKeeper, they do not change the topology of the collection. For instance, increasing `replicationFactor` will _not_ automatically add more replicas to the collection but _will_ allow more ADDREPLICA commands to succeed. -An attribute can be deleted by passing an empty value e.g. `yet_another_attribute_name=` will delete the `yet_another_attribute_name` parameter from the collection. +An attribute can be deleted by passing an empty value. For example, `yet_another_attribute_name=` (with no value) will delete the `yet_another_attribute_name` parameter from the collection. === MODIFYCOLLECTION Parameters @@ -181,7 +181,7 @@ The attributes that can be modified are: * rule * snitch * policy -+ + See the <> section above for details on these attributes. [[reload]]