Skip to content

Commit

Permalink
Fix wrong condition
Browse files Browse the repository at this point in the history
  • Loading branch information
slashome authored Apr 21, 2018
1 parent b201de2 commit 7bd9129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Toml.php
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ private static function normalize($toml)
}

// Raw Lines
if(!isset($toml[$i])) {
if(isset($toml[$i])) {
$lineBuffer .= $toml[$i];
if($toml[$i] == "\n")
{
Expand Down

0 comments on commit 7bd9129

Please sign in to comment.