Commit 1e09c51c authored by JEAN-YVES SGRO's avatar JEAN-YVES SGRO
Browse files

Update typo in regex_intro.md

parent 753cc715
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

A regular expression, often shortened to "regex," is a sequence of characters that define a *search pattern*. Regex is used in many programming languages to perform pattern matching on strings, *i.e.*, "***find and replace***" type operations.

### Regula expression examples
### Regular expression examples

A regex to match a single digit: `\d`