I was looking at the documentation for regular expressions here:
https://crystal-lang.org/reference/1.18/syntax_and_semantics/literals/regex.html
It says that \b is the escape sequence for backspace, but I am pretty sure that is wrong. Crystal now uses PCRE2, which means that \b is actually a word boundary, and my testing shows this to be the case.
It’s possible I misunderstood something, but if not, I hope the doc can be changed.

