Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cbor/tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (r *Rat) UnmarshalCBOR(cborData []byte) error {
case uint64:
tmpDenom.SetUint64(v)
default:
return fmt.Errorf("unsupported demoninator type for cbor.Rat: %T", v)
return fmt.Errorf("unsupported denominator type for cbor.Rat: %T", v)
}
// Create new big.Rat with num/denom set to big.Int values above
r.Rat = new(big.Rat)
Expand Down