Skip to content

Commit

Permalink
Fix stupid syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
awalsh128 committed Nov 27, 2023
1 parent 6154ec6 commit 45e4578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apt_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type AptPackage struct {

type AptPackages []AptPackage

func (ps *AptPackages) serialize() string {
func (ps AptPackages) serialize() string {
tokens := []string{}
for _, p := range ps {
tokens = append(tokens, p.Name+"="+p.Version)
Expand Down

0 comments on commit 45e4578

Please sign in to comment.