From ca6127a29335b984fdeed555861ef33fa8158714 Mon Sep 17 00:00:00 2001 From: Cameron Ball Date: Wed, 12 Dec 2018 15:57:04 +0800 Subject: [PATCH] Fix 'glue' constnat --- common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.php b/common.php index 996c1aa..904c28a 100644 --- a/common.php +++ b/common.php @@ -104,7 +104,7 @@ function lines(string $string): array { return explode("\n", $string); } -const glue = 'join'; +const glue = 'glue'; function glue(string $delim): callable { return function(array $strings) use ($delim): string { return implode($delim, $strings); -- 2.11.0