diff options
author | Daniil Yarancev <21169548+Yardanico@users.noreply.github.com> | 2018-06-05 20:54:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 20:54:42 +0300 |
commit | b1f483c897bb2a881c059dc473c81ec66b3a32fb (patch) | |
tree | 000bef4ed5dad50f6e6e9a8443ba83e294477008 | |
parent | 959b6354c126159e5a59c3a021e472380d04e088 (diff) | |
parent | 0321ea36c987c88a757879cfee0eb571ff908b73 (diff) | |
download | Nim-b1f483c897bb2a881c059dc473c81ec66b3a32fb.tar.gz |
Merge pull request #7960 from kaushalmodi/s-prce-pcre
Fix typo: PRCE -> PCRE
-rw-r--r-- | lib/impure/re.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/impure/re.nim b/lib/impure/re.nim index 34d55b7b0..201c490f3 100644 --- a/lib/impure/re.nim +++ b/lib/impure/re.nim @@ -10,11 +10,11 @@ ## Regular expression support for Nim. ## ## This module is implemented by providing a wrapper around the -## `PRCE (Perl-Compatible Regular Expressions) <http://www.pcre.org>`_ -## C library. This means that your application will depend on the PRCE +## `PCRE (Perl-Compatible Regular Expressions) <http://www.pcre.org>`_ +## C library. This means that your application will depend on the PCRE ## library's licence when using this module, which should not be a problem ## though. -## PRCE's licence follows: +## PCRE's licence follows: ## ## .. include:: ../../doc/regexprs.txt ## |