[DOCS] Fix indent issue in similarity snippet (#51107)
Updates snippet to consistently use 2-space indentation. The snippet previously used a mix of tab/5-space and 2-space indents. Co-authored-by: Peter Johnson <wiz@wiz.co.nz> Co-authored-by: Peter Johnson <peter@geocode.earth>
This commit is contained in:
parent
e2ca93bad3
commit
d590150ca2
|
@ -22,19 +22,19 @@ settings.
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
PUT /index
|
PUT /index
|
||||||
{
|
{
|
||||||
"settings" : {
|
"settings": {
|
||||||
"index" : {
|
"index": {
|
||||||
"similarity" : {
|
"similarity": {
|
||||||
"my_similarity" : {
|
"my_similarity": {
|
||||||
"type" : "DFR",
|
"type": "DFR",
|
||||||
"basic_model" : "g",
|
"basic_model": "g",
|
||||||
"after_effect" : "l",
|
"after_effect": "l",
|
||||||
"normalization" : "h2",
|
"normalization": "h2",
|
||||||
"normalization.h2.c" : "3.0"
|
"normalization.h2.c": "3.0"
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue