From 6da60a24bdffa7a200880371a5e320116729a56e Mon Sep 17 00:00:00 2001 From: Vadim Graboys Date: Fri, 24 Jul 2015 07:40:22 -0400 Subject: [PATCH] update docs to make more clear --- decimal.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/decimal.go b/decimal.go index 8a43631..9c68532 100644 --- a/decimal.go +++ b/decimal.go @@ -544,7 +544,7 @@ func (d *Decimal) ensureInitialized() { } } -// Returns the minimum Decimal that was passed in the arguments. +// Returns the smallest Decimal that was passed in the arguments. // // To call this function with an array, you must do: // @@ -561,7 +561,7 @@ func Min(first Decimal, rest ...Decimal) Decimal { return ans } -// Returns the maximum Decimal that was passed in the arguments. +// Returns the largest Decimal that was passed in the arguments. // // To call this function with an array, you must do: //