From 0321ea36c987c88a757879cfee0eb571ff908b73 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Tue, 5 Jun 2018 12:58:23 -0400 Subject: [PATCH] Fix typo: PRCE -> PCRE --- lib/impure/re.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/impure/re.nim b/lib/impure/re.nim index 34d55b7b0d..201c490f31 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) `_ -## C library. This means that your application will depend on the PRCE +## `PCRE (Perl-Compatible Regular Expressions) `_ +## 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 ##