From 3fc465e0dd6f3e287ccbb538272cb00c13888917 Mon Sep 17 00:00:00 2001 From: hanhan9449 <1481220484@qq.com> Date: Wed, 30 Oct 2019 09:03:21 +0800 Subject: [PATCH] Fix a translation error --- translations/README-cn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/README-cn.md b/translations/README-cn.md index eac7056..77cb90e 100644 --- a/translations/README-cn.md +++ b/translations/README-cn.md @@ -118,7 +118,7 @@ |*|匹配>=0个重复的在*号之前的字符。| |+|匹配>=1个重复的+号前的字符。 |?|标记?之前的字符为可选.| -|{n,m}|匹配num个大括号之前的字符 (n <= num <= m).| +|{n,m}|匹配num个大括号之间的字符 (n <= num <= m).| |(xyz)|字符集,匹配与 xyz 完全相等的字符串.| |||或运算符,匹配符号前或后的字符.| |\|转义字符,用于匹配一些保留的字符 [ ] ( ) { } . * + ? ^ $ \ ||