Skip to content

Commit 90232f0

Browse files
Update 9-regular-expressions/01-regexp-introduction/article.md
Co-authored-by: Ezequiel Castellanos <[email protected]>
1 parent dfab9af commit 90232f0

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/01-regexp-introduction

1 file changed

+1
-1
lines changed

9-regular-expressions/01-regexp-introduction/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Por ejemplo:
132132
// sin la bandera g
133133
alert( "We will, we will".replace(/we/i, "I") ); // I will, we will
134134
135-
// con la flag g
135+
// con la bandera g
136136
alert( "We will, we will".replace(/we/ig, "I") ); // I will, I will
137137
```
138138

0 commit comments

Comments
 (0)