diff --git a/Regular-Expressions.md b/Regular-Expressions.md index 608497b..fa59582 100644 --- a/Regular-Expressions.md +++ b/Regular-Expressions.md @@ -17,5 +17,5 @@ expression !~ /regex/ not equivalent to regex | * | * | Repeat 0 or more times | | «*n*» | {*n*} | Repeat *n* times (also «*n*,*n*», «,*n*», «*n*,») | | (...)®*n* | | Capture the expression in variable @*n* (where *n* is 0-9) | -| ®*n* | | Match previously captured variable. | +| ®*n* | | Match previously captured variable. (editor search/replace only)|