1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

Rename From to AtLeast

This commit is contained in:
Stefan Haller
2023-04-15 12:39:30 +02:00
parent 30656b5ac6
commit c8f26aca68
4 changed files with 9 additions and 9 deletions

View File

@ -60,7 +60,7 @@ type GitVersionRestriction struct {
}
// Verifies the version is at least the given version (inclusive)
func From(version string) GitVersionRestriction {
func AtLeast(version string) GitVersionRestriction {
return GitVersionRestriction{from: version}
}