diff options
author | Rob Pike <r@golang.org> | 2010-01-12 07:38:31 +1100 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2010-01-12 07:38:31 +1100 |
commit | 0490f773116d3742eff9c77e1ee41eb5d2912561 (patch) | |
tree | bed73cf7ceb4990efe50299a296481aa55165544 /src/pkg/math/fmod.go | |
parent | 6de77b3decb69b0c806361740ab187339326cee0 (diff) | |
download | golang-0490f773116d3742eff9c77e1ee41eb5d2912561.tar.gz |
Clean up and make consistent the comments in the math package.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186042
Diffstat (limited to 'src/pkg/math/fmod.go')
-rw-r--r-- | src/pkg/math/fmod.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/math/fmod.go b/src/pkg/math/fmod.go index d88ad5359..cff9ae497 100644 --- a/src/pkg/math/fmod.go +++ b/src/pkg/math/fmod.go @@ -6,8 +6,8 @@ package math /* - * floating-point mod func without infinity or NaN checking - */ + Floating-point mod func without infinity or NaN checking +*/ // Fmod returns the floating-point remainder of x/y. func Fmod(x, y float64) float64 { |