From 888fae15e060c25d82725a282fe2b563bb944b5a Mon Sep 17 00:00:00 2001 From: Beta Ziliani Date: Wed, 16 Aug 2023 09:54:33 -0300 Subject: [PATCH] Fixing typo in regex.cr --- src/regex.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regex.cr b/src/regex.cr index c0f0ad56b4da..68d25f5d6be8 100644 --- a/src/regex.cr +++ b/src/regex.cr @@ -81,7 +81,7 @@ require "./regex/match_data" # # Many programming languages and tools implement their own regular expression # language, but Crystal uses [PCRE2](http://www.pcre.org/), a popular C library, with -# [JIT complication](http://www.pcre.org/current/doc/html/pcre2jit.html) enabled +# [JIT compilation](http://www.pcre.org/current/doc/html/pcre2jit.html) enabled # for providing regular expressions. Here give a brief summary of the most # basic features of regular expressions - grouping, repetition, and # alternation - but the feature set of PCRE2 extends far beyond these, and we