Update article.md

typos
This commit is contained in:
overken 2019-04-01 15:32:59 -07:00 committed by GitHub
parent 706b1f26b2
commit 7c3df466bf
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). : With this flag the search looks for all matches, without it -- only the first one (we'll see uses in the next chapter).
`m` `m`
: Multiline mode (covered in the chapter <info:regexp-multiline>). : Multiline mode (covered in the chapter <info:regexp-multiline-mode>).
`s` `s`
: "Dotall" mode, allows `.` to match newlines (covered in the chapter <info:regexp-character-classes>). : "Dotall" mode, allows `.` to match newlines (covered in the chapter <info:regexp-character-classes>).