summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/substr.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/substr.md')
-rw-r--r--docs/content/en/functions/substr.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/en/functions/substr.md b/docs/content/en/functions/substr.md
index d0fdfe26d..31f733e0b 100644
--- a/docs/content/en/functions/substr.md
+++ b/docs/content/en/functions/substr.md
@@ -22,7 +22,7 @@ It normally takes two parameters: `start` and `length`. It can also take one par
To extract characters from the end of the string, use a negative start number.
-In addition, borrowing from the extended behavior described at https://php.net substr, if `length` is given and is negative, that number of characters will be omitted from the end of string.
+If `length` is given and is negative, that number of characters will be omitted from the end of string.
```
{{ substr "abcdef" 0 }} → "abcdef"