We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 044c52b commit e88ac77Copy full SHA for e88ac77
2 files changed
vlib/semver/semver.v
@@ -60,7 +60,7 @@ pub fn (ver Version) increment(typ Increment) Version {
60
}
61
62
// satisfies returns `true` if the `input` expression can be validated to `true` when run against this `Version`.
63
-// Example: assert semver.build(1,0,0).satisfies('<=2.0.0') == true
+// Example: assert semver.build(1,0,0).satisfies('<=2.0.0')
64
// Example: assert semver.build(1,0,0).satisfies('>=2.0.0') == false
65
pub fn (ver Version) satisfies(input string) bool {
66
return version_satisfies(ver, input)
vlib/semver/v.mod
0 commit comments