s/revision/patch (semver.org compliance)
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -33,9 +33,9 @@ | ... | @@ -33,9 +33,9 @@ |
33 | phantom.casperVersion = { | 33 | phantom.casperVersion = { |
34 | major: 0, | 34 | major: 0, |
35 | minor: 4, | 35 | minor: 4, |
36 | revision: 1, | 36 | patch: 1, |
37 | toString: function() { | 37 | toString: function() { |
38 | return [this.major, this.minor, this.revision].join('.'); | 38 | return [this.major, this.minor, this.patch].join('.'); |
39 | } | 39 | } |
40 | }; | 40 | }; |
41 | 41 | ... | ... |
-
Please register or sign in to post a comment