Skip to content

Commit fc73593

Browse files
committed
chore(readme): fix typo
1 parent 4c2e82c commit fc73593

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ textlint --rule max-kanji-continuous-len README.md
5252

5353
## Further Reading
5454

55-
デフォルト値である漢字の連続調が6文字以上だとエラーとする根拠は今のところありません
55+
デフォルト値である漢字の連続長が6文字以上だとエラーとする根拠は今のところありません
5656

5757
> 漢字連続長はこの印象に影響が無かったことから、漢字連続長を短くすることで「子ども向けの文章」という印象を与えず、先行研究で指摘される読みやすい文章が実現できると示唆された。
5858
> -- [日本心理学会第79回大会 漢字含有率と漢字連続長が文章の印象に与える影響](http://www.myschedule.jp/jpa2015/search/detail_program/id:602)

src/textlint-rule-max-kanji-continuous-len.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {matchCaptureGroupAll} from "match-index"
55

66
const KanjiRegExp = /((?:[\u3400-\u9FFF\uF900-\uFAFF]|[\uD840-\uD87F][\uDC00-\uDFFF])+)/g;
77
const defaultOptions = {
8-
// 最大の漢字長
8+
// 最大の漢字連続長
99
// Allow max continuous length of kanji
1010
// If {current} > max(5), report Error.
1111
max: 5

0 commit comments

Comments
 (0)