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

Side by Side Diff: src/pkg/io/io.go

Issue 4442064: code review 4442064: src/pkg: make package doc comments consistently start w... (Closed)
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:
View unified diff | Download patch
« no previous file with comments | « src/pkg/index/suffixarray/suffixarray.go ('k') | src/pkg/io/ioutil/ioutil.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // This package provides basic interfaces to I/O primitives. 5 // Package io provides basic interfaces to I/O primitives.
6 // Its primary job is to wrap existing implementations of such primitives, 6 // Its primary job is to wrap existing implementations of such primitives,
7 // such as those in package os, into shared public interfaces that 7 // such as those in package os, into shared public interfaces that
8 // abstract the functionality, plus some other related primitives. 8 // abstract the functionality, plus some other related primitives.
9 package io 9 package io
10 10
11 import "os" 11 import "os"
12 12
13 // Error represents an unexpected I/O behavior. 13 // Error represents an unexpected I/O behavior.
14 type Error struct { 14 type Error struct {
15 os.ErrorString 15 os.ErrorString
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 } 373 }
374 off += s.base 374 off += s.base
375 if max := s.limit - off; int64(len(p)) > max { 375 if max := s.limit - off; int64(len(p)) > max {
376 p = p[0:max] 376 p = p[0:max]
377 } 377 }
378 return s.r.ReadAt(p, off) 378 return s.r.ReadAt(p, off)
379 } 379 }
380 380
381 // Size returns the size of the section in bytes. 381 // Size returns the size of the section in bytes.
382 func (s *SectionReader) Size() int64 { return s.limit - s.base } 382 func (s *SectionReader) Size() int64 { return s.limit - s.base }
OLDNEW
« no previous file with comments | « src/pkg/index/suffixarray/suffixarray.go ('k') | src/pkg/io/ioutil/ioutil.go » ('j') | no next file with comments »

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