From 58efb6fec886dad1c72b2b81293cdf7dd7eaa1b1 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 18 Nov 2023 16:28:42 -0800 Subject: [PATCH] Fix unterminated comment in bidder.go and format. --- auctionsim/bidder.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auctionsim/bidder.go b/auctionsim/bidder.go index ba1f94a..6995f25 100644 --- a/auctionsim/bidder.go +++ b/auctionsim/bidder.go @@ -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 } /**