summaryrefslogtreecommitdiff
path: root/src/pkg/text/tabwriter/tabwriter.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/text/tabwriter/tabwriter.go')
-rw-r--r--src/pkg/text/tabwriter/tabwriter.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/text/tabwriter/tabwriter.go b/src/pkg/text/tabwriter/tabwriter.go
index ce84600d6..722ac8d87 100644
--- a/src/pkg/text/tabwriter/tabwriter.go
+++ b/src/pkg/text/tabwriter/tabwriter.go
@@ -547,7 +547,7 @@ func (b *Writer) Write(buf []byte) (n int, err error) {
}
// NewWriter allocates and initializes a new tabwriter.Writer.
-// The parameters are the same as for the the Init function.
+// The parameters are the same as for the Init function.
//
func NewWriter(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *Writer {
return new(Writer).Init(output, minwidth, tabwidth, padding, padchar, flags)