From 910ccd3ad883b5c5bb47110f7963baad7d4adbba Mon Sep 17 00:00:00 2001 From: Justin Goette <53531335+jcgoette@users.noreply.github.com> Date: Tue, 27 Dec 2022 18:34:49 -0500 Subject: [PATCH] docs: Fix typo (#3196) --- docs/06_Helper_functions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/06_Helper_functions/index.md b/docs/06_Helper_functions/index.md index 860e8d10..33f9eb37 100644 --- a/docs/06_Helper_functions/index.md +++ b/docs/06_Helper_functions/index.md @@ -122,7 +122,7 @@ $extracted = extractFromDelimiters($string, $start, $end); ``` # stripWithDelimiters -Remove one or more part(s) of a string using a start and end delmiters. +Remove one or more part(s) of a string using a start and end delimiter. It is the inverse of `extractFromDelimiters`. ```php