Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kislaykishore committed Aug 9, 2024
1 parent bc54a78 commit 702b7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfg/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func (o *Octal) UnmarshalText(text []byte) error {
return nil
}

func (o Octal) MarshalText() (text []byte, _ error) {
func (o Octal) MarshalText() ([]byte, error) {
return []byte(strconv.FormatInt(int64(o), 8)), nil
}

Expand Down

0 comments on commit 702b7f9

Please sign in to comment.