From 560355ff92ed9849b4dcd714b2081309266177fe Mon Sep 17 00:00:00 2001 From: David Hill Date: Mon, 24 Mar 2014 22:05:46 -0400 Subject: [PATCH] typo --- coinset/coins.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coinset/coins.go b/coinset/coins.go index e65fce2..6ed96ee 100644 --- a/coinset/coins.go +++ b/coinset/coins.go @@ -216,7 +216,7 @@ type MaxValueAgeCoinSelector struct { } // CoinSelect will attempt to select coins using the algorithm described -// in the MaxValueAgeSelector struct. +// in the MaxValueAgeCoinSelector struct. func (s MaxValueAgeCoinSelector) CoinSelect(targetValue int64, coins []Coin) (Coins, error) { sortedCoins := make([]Coin, 0, len(coins)) sortedCoins = append(sortedCoins, coins...)