Fix unterminated comment in bidder.go and format.

This commit is contained in:
Kistaro Windrider 2023-11-18 16:28:42 -08:00
parent 88737d8f4c
commit 58efb6fec8
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

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