Browse Source

Broke big line for readability

Alois Mahdal 11 years ago
parent
commit
9f3c2025ee
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      lib/SugarTrail/Template/Slave.pm

+ 2
- 1
lib/SugarTrail/Template/Slave.pm View File

@@ -23,7 +23,8 @@ sub source {
23 23
 sub head {
24 24
     my $self = shift;
25 25
     my @head;
26
-    push @head, sprintf "%s: %s\n", $_, $self->{meta}->{$_} foreach keys %{$self->{meta}};
26
+    push @head, sprintf "%s: %s\n", $_, $self->{meta}->{$_}
27
+        foreach keys %{$self->{meta}};
27 28
     return join "", @head;
28 29
 }
29 30