Spacing
Tomas Doran [Tue, 27 Sep 2011 14:42:16 +0000 (15:42 +0100)]
lib/CatalystX/HelpText/File.pm

index 6a041b9..0100d03 100644 (file)
@@ -6,9 +6,9 @@ use Carp qw/confess/;
 use namespace::autoclean;
 
 has help_files_path => (
-  is => 'ro',
-  isa => Str,
-  default => '/support/help/',
+    is => 'ro',
+    isa => Str,
+    default => '/support/help/',
 );
 
 has help_files_ext => (
@@ -19,8 +19,8 @@ has help_files_ext => (
 
 sub get_help_text_for {
     my ($self, $c, $help_key) = @_;
-    confess ('No $c provided') unless $c;
-    confess ('No $help_key provided') unless $help_key;
+    confess('No $c provided') unless $c;
+    confess('No $help_key provided') unless $help_key;
 
     my $file_path = $c->path_to('root', $self->help_files_path.$help_key.$self->help_files_ext);
     my $string = '';
@@ -35,3 +35,4 @@ sub get_help_text_for {
 }
 
 1;
+