diff --git a/translations/README-cn.md b/translations/README-cn.md index 55984ea..6ff3f4f 100644 --- a/translations/README-cn.md +++ b/translations/README-cn.md @@ -119,7 +119,7 @@ |*|匹配>=0个重复的在*号之前的字符。| |+|匹配>=1个重复的+号前的字符。 |?|标记?之前的字符为可选.| -|{n,m}|匹配num个大括号之间的字符 (n <= num <= m).| +|{n,m}|匹配num个大括号之前的字符或字符集 (n <= num <= m).| |(xyz)|字符集,匹配与 xyz 完全相等的字符串.| |||或运算符,匹配符号前或后的字符.| |\|转义字符,用于匹配一些保留的字符 [ ] ( ) { } . * + ? ^ $ \ ||