Merge pull request #885 from overken/patch-1

Update article.md
This commit is contained in:
Ilya Kantor 2019-04-02 08:41:46 +03:00 committed by GitHub
commit e9be10d0c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,7 +94,7 @@ There are only 5 of them in JavaScript:
: With this flag the search looks for all matches, without it -- only the first one (we'll see uses in the next chapter).
`m`
: Multiline mode (covered in the chapter <info:regexp-multiline>).
: Multiline mode (covered in the chapter <info:regexp-multiline-mode>).
`s`
: "Dotall" mode, allows `.` to match newlines (covered in the chapter <info:regexp-character-classes>).