diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-10-02 18:02:51 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-10-03 12:53:51 +0200 |
commit | d6a2754348f57883036c0f35f0a880b7817e6bc1 (patch) | |
tree | b3d3a8a10ebf0e56acff206d0e188f3b61651d7e /test/src/regex-resources/BOOST.tests | |
parent | ceae38b9338ea07b18b2d2efa07bcf304d40c23d (diff) | |
download | emacs-d6a2754348f57883036c0f35f0a880b7817e6bc1.tar.gz emacs-d6a2754348f57883036c0f35f0a880b7817e6bc1.tar.bz2 emacs-d6a2754348f57883036c0f35f0a880b7817e6bc1.zip |
; Fix more typos
Diffstat (limited to 'test/src/regex-resources/BOOST.tests')
-rw-r--r-- | test/src/regex-resources/BOOST.tests | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/regex-resources/BOOST.tests b/test/src/regex-resources/BOOST.tests index 98fd3b6abf3..756fa00486b 100644 --- a/test/src/regex-resources/BOOST.tests +++ b/test/src/regex-resources/BOOST.tests @@ -93,7 +93,7 @@ aa\) ! . \0 0 1 ; -; now move on to the repetion ops, +; now move on to the repetition ops, ; starting with operator * - match_default normal REG_EXTENDED a* b 0 0 @@ -275,7 +275,7 @@ a(b*)c\1d abbcbbbd -1 -1 ^(.)\1 abc -1 -1 a([bc])\1d abcdabbd 4 8 5 6 ; strictly speaking this is at best ambiguous, at worst wrong, this is what most -; re implimentations will match though. +; re implementations will match though. a(([bc])\2)*d abbccd 0 6 3 5 3 4 a(([bc])\2)*d abbcbd -1 -1 |