Commit 011bf2b6 authored by Robert Griesemer's avatar Robert Griesemer

minor adjustments to comments for better godoc output

R=r
DELTA=6  (0 added, 0 deleted, 6 changed)
OCL=27686
CL=27688
parent 3ae849d4
......@@ -702,7 +702,7 @@ func (x Natural) ToString(base uint) string {
// String converts x to its decimal string representation.
// (x.String is the same as x.ToString(10)).
// x.String() is the same as x.ToString(10).
//
func (x Natural) String() string {
return x.ToString(10);
......@@ -1251,7 +1251,7 @@ func (x *Integer) ToString(base uint) string {
// String converts x to its decimal string representation.
// (x.String is the same as x.ToString(10)).
// x.String() is the same as x.ToString(10).
//
func (x *Integer) String() string {
return x.ToString(10);
......@@ -1431,7 +1431,7 @@ func (x *Rational) ToString(base uint) string {
// String converts x to its decimal string representation.
// (x.String is the same as x.ToString(10)).
// x.String() is the same as x.ToString(10).
//
func (x *Rational) String() string {
return x.ToString(10);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment