Fix unterminated comment in bidder.go and format.

This commit is contained in:
2023-11-18 16:28:42 -08:00
parent 88737d8f4c
commit 58efb6fec8

View File

@@ -57,8 +57,9 @@ type Bidder struct {
/** /**
* ValueBelief returns how much the bidder *thinks* the item is worth to them. * ValueBelief returns how much the bidder *thinks* the item is worth to them.
* The actual value to them is b.Value. * The actual value to them is b.Value.
*/
func (b Bidder) ValueBelief() float64 { func (b Bidder) ValueBelief() float64 {
return b.Value + b.Irrationality; return b.Value + b.Irrationality
} }
/** /**