aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/primops.cc
diff options
context:
space:
mode:
authorBen Burdette <bburdette@users.noreply.github.com>2022-05-09 09:30:44 -0600
committerGitHub <noreply@github.com>2022-05-09 09:30:44 -0600
commit7cd7c7c91aec7a49e99a8f403cb4ef4932a02b20 (patch)
tree06504de8c9b22a85eaf239e094499dc512c891f2 /src/libexpr/primops.cc
parentfc66f48812383dad59ebdbabdd29bec34ed31921 (diff)
parent3ec979fa902c49e975a9af7dc2792fb197030e04 (diff)
Merge branch 'master' into debug-exploratory-PR
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r--src/libexpr/primops.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc
index 5ee917f19..de8d74292 100644
--- a/src/libexpr/primops.cc
+++ b/src/libexpr/primops.cc
@@ -3823,7 +3823,7 @@ static RegisterPrimOp primop_split({
Evaluates to `[ "" [ "a" null ] "b" [ null "c" ] "" ]`.
```nix
- builtins.split "([[:upper:]]+)" " FOO "
+ builtins.split "([[:upper:]]+)" " FOO "
```
Evaluates to `[ " " [ "FOO" ] " " ]`.