Explorar el Código

Broke big line for readability

Alois Mahdal hace 11 años
padre
commit
9f3c2025ee
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2
    1
      lib/SugarTrail/Template/Slave.pm

+ 2
- 1
lib/SugarTrail/Template/Slave.pm Ver fichero

@@ -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