Skip to content

Commit 9b15663

Browse files
committed
add space in application
1 parent 40f4abc commit 9b15663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function dump($exp)
1414
}
1515

1616
list($f, $arg) = $exp;
17-
return dump($f).(is_application($arg) ? '('.dump($arg).')' : dump($arg));
17+
return dump($f).' '.(is_application($arg) ? '('.dump($arg).')' : dump($arg));
1818
}
1919

2020
function is_application($exp)

0 commit comments

Comments
 (0)