Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix + breakage
I still don't understand why the previous fix did not work.  But this fixes it.
  • Loading branch information
lizmat committed Nov 4, 2014
1 parent a49a556 commit 8edbf14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Version.pm
Expand Up @@ -10,7 +10,7 @@ class Version {
}
self.bless(
:parts(@parts),
$s.chars ?? :plus($s.substr(*-1) eq '+') !! (),
:plus(?$s.chars && $s.substr(*-1) eq '+'),
);
};

Expand Down

0 comments on commit 8edbf14

Please sign in to comment.