Skip to content

Commit 1f0e33c

Browse files
authored
Update 9-regular-expressions/17-regexp-methods/article.md
1 parent 310f8c9 commit 1f0e33c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

9-regular-expressions/17-regexp-methods/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ let regexp = /amo/gi;
321321
322322
let str = "Eu amo JavaScript";
323323
324-
// inicia a pesquisa da posição 10:
324+
// inicia a pesquisa na posição 10:
325325
regexp.lastIndex = 10;
326326
alert( regexp.test(str) ); // false (sem correspondência)
327327
```

0 commit comments

Comments
 (0)