Compare commits

..

No commits in common. "af136c8569ce67cb15dc2d47aa4c9708207706b1" and "161f04f87dddc8fe55e408f603b33065d638f733" have entirely different histories.

View file

@ -1799,8 +1799,8 @@ func (d Decimal) MarshalJSON() ([]byte, error) {
return []byte(str), nil
}
// MarshalYAML implements the [yaml.Marshaler] interface.
func (d Decimal) MarshalYAML() (any, error) {
// MarshalYAML implements the yaml.Marshaler interface.
func (d Decimal) MarshalYAML() (interface{}, error) {
if MarshalYAMLWithoutQuotes {
n := yaml.Node{
Kind: yaml.ScalarNode,