Skip to content

Commit 2f337f0

Browse files
Merge pull request #215506 from dereklegenzoff/main
fixing json in normalizers doc
2 parents 9c23f15 + 76f16c9 commit 2f337f0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/search/search-normalizers.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,25 +144,25 @@ Custom normalizers are [defined within the index schema](/rest/api/searchservice
144144
"char_filter_name_2"
145145
],
146146
"tokenFilters":[
147-
"token_filter_name_1
147+
"token_filter_name_1"
148148
]
149149
}
150150
],
151151
"charFilters":(optional)[
152152
{
153153
"name":"char_filter_name_1",
154154
"@odata.type":"#char_filter_type",
155-
"option1":value1,
156-
"option2":value2,
155+
"option1": "value1",
156+
"option2": "value2",
157157
...
158158
}
159159
],
160160
"tokenFilters":(optional)[
161161
{
162162
"name":"token_filter_name_1",
163163
"@odata.type":"#token_filter_type",
164-
"option1":value1,
165-
"option2":value2,
164+
"option1": "value1",
165+
"option2": "value2",
166166
...
167167
}
168168
]
@@ -205,7 +205,7 @@ The example below illustrates a custom normalizer definition with corresponding
205205
"charFilters":[
206206
"map_dash",
207207
"remove_whitespace"
208-
],,
208+
],
209209
"tokenFilters":[
210210
"my_asciifolding",
211211
"elision",

0 commit comments

Comments
 (0)