fix format (#55)

replace `~` with `~` to avoid incorrect format
This commit is contained in:
Alex Sun 2017-08-16 19:38:18 +08:00 committed by Zeeshan Ahmed
parent 8cb2f7d6cd
commit 94c90e66c3

View File

@ -206,7 +206,7 @@
## 2.4 `{}`
在正则表达式中 `{}` 是一个量词, 常用来一个或一组字符可以重复出现的次数.
例如, 表达式 `[0-9]{2,3}` 匹配 2~3 位 0~9 的数字.
例如, 表达式 `[0-9]{2,3}` 匹配 23 位 09 的数字.
<pre>