Skip to content

Commit

Permalink
brackets for clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
xsawyerx committed Dec 16, 2010
1 parent 9534f5c commit b00f320
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/PEG.pm
Expand Up @@ -8,8 +8,12 @@ sub _read_news {
YAML::LoadFile(path config->{appdir}, 'data', 'news.yml');
}

my $upcoming_events = YAML::LoadFile(path config->{appdir}, 'data', 'events.yml');
my $earlier_events = YAML::LoadFile(path config->{appdir}, 'data', 'earlier_events.yml');
my $upcoming_events = YAML::LoadFile(
path( config->{appdir}, 'data', 'events.yml' )
);
my $earlier_events = YAML::LoadFile(
path( config->{appdir}, 'data', 'earlier_events.yml' )
);
my $news = _read_news();

# this will be refactored out into the templates later
Expand Down

0 comments on commit b00f320

Please sign in to comment.