From 0e046dd0582d3eb1c56efefc4c88d4eecd22676e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=91=E6=98=AF=E6=B4=97=E8=A1=A3=E6=9C=BA?= Date: Mon, 8 Jul 2019 15:51:38 +0800 Subject: [PATCH] Fix content's order --- translations/README-cn.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/translations/README-cn.md b/translations/README-cn.md index 0513841..8883baa 100644 --- a/translations/README-cn.md +++ b/translations/README-cn.md @@ -236,15 +236,15 @@ 我们可以省略第二个参数. 例如, `[0-9]{2,}` 匹配至少两位 0~9 的数字. -如果逗号也省略掉则表示重复固定的次数. -例如, `[0-9]{3}` 匹配3位数字 -
 "[0-9]{2,}" => The number was 9.9997 but we rounded it off to 10.0.
 
[在线练习](https://regex101.com/r/Gdy4w5/1) +如果逗号也省略掉则表示重复固定的次数. +例如, `[0-9]{3}` 匹配3位数字 +
 "[0-9]{3}" => The number was 9.9997 but we rounded it off to 10.0.