From 261fd592b9434e966f614e17ae515647eaa48425 Mon Sep 17 00:00:00 2001 From: vrana Date: Wed, 12 Sep 2012 10:42:36 -0700 Subject: [PATCH] Add missing space in string --- src/lint/linter/ArcanistRubyLinter.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/lint/linter/ArcanistRubyLinter.php b/src/lint/linter/ArcanistRubyLinter.php index 022847be..df5ca138 100644 --- a/src/lint/linter/ArcanistRubyLinter.php +++ b/src/lint/linter/ArcanistRubyLinter.php @@ -54,10 +54,9 @@ final class ArcanistRubyLinter extends ArcanistLinter { list($err) = exec_manual('which %s', $ruby_bin); if ($err) { throw new ArcanistUsageException( - "Ruby does not appear to be installed on this system.". - "Install it or add ". - "'lint.ruby.prefix' in your .arcconfig to point to the directory ". - "where it resides."); + "Ruby does not appear to be installed on this system. Install it or ". + "add 'lint.ruby.prefix' in your .arcconfig to point to ". + "the directory where it resides."); } }