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

Delta Between Two Patch Sets: src/pkg/compress/gzip/gunzip.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/compress/flate/inflate.go ('k') | src/pkg/compress/lzw/reader.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 gzip package implements reading and writing of 5 // Package gzip implements reading and writing of gzip format compressed files,
6 // gzip format compressed files, as specified in RFC 1952. 6 // as specified in RFC 1952.
7 package gzip 7 package gzip
8 8
9 import ( 9 import (
10 "bufio" 10 "bufio"
11 "compress/flate" 11 "compress/flate"
12 "hash" 12 "hash"
13 "hash/crc32" 13 "hash/crc32"
14 "io" 14 "io"
15 "os" 15 "os"
16 ) 16 )
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 } 221 }
222 222
223 // Yes. Reset and read from it. 223 // Yes. Reset and read from it.
224 z.digest.Reset() 224 z.digest.Reset()
225 z.size = 0 225 z.size = 0
226 return z.Read(p) 226 return z.Read(p)
227 } 227 }
228 228
229 // Calling Close does not close the wrapped io.Reader originally passed to NewRe ader. 229 // Calling Close does not close the wrapped io.Reader originally passed to NewRe ader.
230 func (z *Decompressor) Close() os.Error { return z.decompressor.Close() } 230 func (z *Decompressor) Close() os.Error { return z.decompressor.Close() }
LEFTRIGHT

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