Commit ae729a43 authored by Christopher Wedgwood's avatar Christopher Wedgwood Committed by Rob Pike

archive/tar: update documentation to match current coding style

R=rsc, r
CC=golang-dev
https://golang.org/cl/903044
parent 98a5a20c
...@@ -24,9 +24,9 @@ var ( ...@@ -24,9 +24,9 @@ var (
// and then it can be treated as an io.Reader to access the file's data. // and then it can be treated as an io.Reader to access the file's data.
// //
// Example: // Example:
// tr := tar.NewReader(r); // tr := tar.NewReader(r)
// for { // for {
// hdr, err := tr.Next(); // hdr, err := tr.Next()
// if err != nil { // if err != nil {
// // handle error // // handle error
// } // }
...@@ -34,7 +34,7 @@ var ( ...@@ -34,7 +34,7 @@ var (
// // end of tar archive // // end of tar archive
// break // break
// } // }
// io.Copy(data, tr); // io.Copy(data, tr)
// } // }
type Reader struct { type Reader struct {
r io.Reader r io.Reader
......
...@@ -25,15 +25,15 @@ var ( ...@@ -25,15 +25,15 @@ var (
// writing at most hdr.Size bytes in total. // writing at most hdr.Size bytes in total.
// //
// Example: // Example:
// tw := tar.NewWriter(w); // tw := tar.NewWriter(w)
// hdr := new(Header); // hdr := new(Header)
// hdr.Size = length of data in bytes; // hdr.Size = length of data in bytes
// // populate other hdr fields as desired // // populate other hdr fields as desired
// if err := tw.WriteHeader(hdr); err != nil { // if err := tw.WriteHeader(hdr); err != nil {
// // handle error // // handle error
// } // }
// io.Copy(tw, data); // io.Copy(tw, data)
// tw.Close(); // tw.Close()
type Writer struct { type Writer struct {
w io.Writer w io.Writer
err os.Error err os.Error
......
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