doc: fix regex in example for regex aliases

This commit is contained in:
Martin Michlmayr 2020-07-26 19:25:15 +08:00 committed by Simon Michael
parent 76cb45def6
commit 76b04ceb4f

View File

@ -1285,7 +1285,7 @@ by the usual numeric backreferences in REPLACEMENT.
Eg:
```journal
alias /^(.+):bank:([^:]+)(.*)/ = \1:\2 \3
alias /^(.+):bank:([^:]+):(.*)/ = \1:\2 \3
; rewrites "assets:bank:wells fargo:checking" to "assets:wells fargo checking"
```