Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(184)

Delta Between Two Patch Sets: src/pkg/tabwriter/tabwriter.go

Issue 4442064: code review 4442064: src/pkg: make package doc comments consistently start w... (Closed)
Left Patch Set: Created 13 years, 11 months ago
Right Patch Set: diff -r 1c953954868a https://go.googlecode.com/hg/ Created 13 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/syslog/syslog.go ('k') | src/pkg/template/template.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // The tabwriter package implements a write filter (tabwriter.Writer) 5 // Package tabwriter implements a write filter (tabwriter.Writer) that
6 // that translates tabbed columns in input into properly aligned text. 6 // translates tabbed columns in input into properly aligned text.
7 // 7 //
8 // The package is using the Elastic Tabstops algorithm described at 8 // The package is using the Elastic Tabstops algorithm described at
9 // http://nickgravgaard.com/elastictabstops/index.html. 9 // http://nickgravgaard.com/elastictabstops/index.html.
10 // 10 //
11 package tabwriter 11 package tabwriter
12 12
13 import ( 13 import (
14 "bytes" 14 "bytes"
15 "io" 15 "io"
16 "os" 16 "os"
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 return 577 return
578 } 578 }
579 579
580 580
581 // NewWriter allocates and initializes a new tabwriter.Writer. 581 // NewWriter allocates and initializes a new tabwriter.Writer.
582 // The parameters are the same as for the the Init function. 582 // The parameters are the same as for the the Init function.
583 // 583 //
584 func NewWriter(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *Writer { 584 func NewWriter(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *Writer {
585 return new(Writer).Init(output, minwidth, tabwidth, padding, padchar, fl ags) 585 return new(Writer).Init(output, minwidth, tabwidth, padding, padchar, fl ags)
586 } 586 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b