Skip to content

Commit ec187ed

Browse files
committed
[Docs] Fix bad link
relates #30397
1 parent d7c2a99 commit ec187ed

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docs/plugins/analysis-nori.asciidoc

+5-6
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The `nori` analyzer consists of the following tokenizer and token filters:
1515

1616
* <<analysis-nori-tokenizer,`nori_tokenizer`>>
1717
* <<analysis-nori-speech,`nori_part_of_speech`>> token filter
18-
* <<analysis-nori-reading,`nori_readingform`>> token filter
18+
* <<analysis-nori-readingform,`nori_readingform`>> token filter
1919
* {ref}/analysis-lowercase-tokenfilter.html[`lowercase`] token filter
2020

2121
It supports the `decompound_mode` and `user_dictionary` settings from
@@ -379,20 +379,20 @@ PUT nori_sample
379379
GET nori_sample/_analyze
380380
{
381381
"analyzer": "my_analyzer",
382-
"text": "鄕歌" <1>
382+
"text": "鄕歌" <1>
383383
}
384384
--------------------------------------------------
385385
// CONSOLE
386386

387-
<1> Hyangga
387+
<1> A token written in Hanja: Hyangga
388388

389389
Which responds with:
390390

391391
[source,js]
392392
--------------------------------------------------
393393
{
394394
"tokens" : [ {
395-
"token" : "향가", <2>
395+
"token" : "향가", <1>
396396
"start_offset" : 0,
397397
"end_offset" : 2,
398398
"type" : "word",
@@ -402,5 +402,4 @@ Which responds with:
402402
--------------------------------------------------
403403
// TESTRESPONSE
404404

405-
<1> A token written in Hanja.
406-
<2> The Hanja form is replaced by the Hangul translation.
405+
<1> The Hanja form is replaced by the Hangul translation.

0 commit comments

Comments
 (0)