diff options
author | Özgür Kesim <oec@codeblau.de> | 2024-09-04 20:26:08 +0200 |
---|---|---|
committer | Özgür Kesim <oec@codeblau.de> | 2024-09-04 20:26:08 +0200 |
commit | 57285c12c11ea0bf7b39af2cfc770340a222913a (patch) | |
tree | 7404da9b2e26876d2852c503463c58a1cab122e2 /project.go | |
parent | 7eb6abf25009a4d53ca18e4d4ac01c810b52ea48 (diff) |
fix minimum required version glitch
Diffstat (limited to 'project.go')
-rw-r--r-- | project.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ type Version struct { Timestamp time.Time } -type VersionsByDate []Version +type VersionsByDate Versions func (v VersionsByDate) Len() int { return len(v) } func (v VersionsByDate) Less(i, j int) bool { return v[i].Timestamp.Before(v[j].Timestamp) } |