Fix Chinese translation error (#107)

This commit is contained in:
Hello World 2018-01-19 16:00:05 +08:00 committed by Zeeshan Ahmad
parent aeecdc154a
commit ef6abcb2cf

View File

@ -454,7 +454,7 @@
像之前介绍的 `(^,$)` 用于检查格式是否是在待检测字符串的开头或结尾. 但我们如果想要它在每行的开头和结尾生效, 我们需要用到多行修饰符 `m`.
例如, 表达式 `/at(.)?$/gm` 表示在待检测字符串每行的末尾搜索 `at`后跟一个或多个 `.` 的字符串, 并返回全部结果.
例如, 表达式 `/at(.)?$/gm` 表示小写字符 `a` 后跟小写字符 `t` , 末尾可选除换行符外任意字符. 根据 `m` 修饰符, 现在表达式匹配每行的结尾.
<pre>
"/.at(.)?$/" => The fat