[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
|
||||
{
|
||||
"settings" : {
|
||||
"index" : {
|
||||
"similarity" : {
|
||||
"my_similarity" : {
|
||||
"type" : "DFR",
|
||||
"basic_model" : "g",
|
||||
"after_effect" : "l",
|
||||
"normalization" : "h2",
|
||||
"normalization.h2.c" : "3.0"
|
||||
}
|
||||
}
|
||||
"settings": {
|
||||
"index": {
|
||||
"similarity": {
|
||||
"my_similarity": {
|
||||
"type": "DFR",
|
||||
"basic_model": "g",
|
||||
"after_effect": "l",
|
||||
"normalization": "h2",
|
||||
"normalization.h2.c": "3.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
--------------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue