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

Delta Between Two Patch Sets: src/pkg/os/path.go

Issue 4715041: code review 4715041: go/printer: changed max. number of newlines from 3 to 2 (Closed)
Left Patch Set: Created 13 years, 8 months ago
Right Patch Set: diff -r 43f78423340b https://go.googlecode.com/hg/ Created 13 years, 8 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/os/os_test.go ('k') | src/pkg/os/proc.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 package os 5 package os
6
7 6
8 // MkdirAll creates a directory named path, 7 // MkdirAll creates a directory named path,
9 // along with any necessary parents, and returns nil, 8 // along with any necessary parents, and returns nil,
10 // or else returns an error. 9 // or else returns an error.
11 // The permission bits perm are used for all 10 // The permission bits perm are used for all
12 // directories that MkdirAll creates. 11 // directories that MkdirAll creates.
13 // If path is already a directory, MkdirAll does nothing 12 // If path is already a directory, MkdirAll does nothing
14 // and returns nil. 13 // and returns nil.
15 func MkdirAll(path string, perm uint32) Error { 14 func MkdirAll(path string, perm uint32) Error {
16 // If path exists, stop with success or error. 15 // If path exists, stop with success or error.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 // Close directory, because windows won't remove opened directory. 109 // Close directory, because windows won't remove opened directory.
111 fd.Close() 110 fd.Close()
112 111
113 // Remove directory. 112 // Remove directory.
114 err1 := Remove(path) 113 err1 := Remove(path)
115 if err == nil { 114 if err == nil {
116 err = err1 115 err = err1
117 } 116 }
118 return err 117 return err
119 } 118 }
LEFTRIGHT

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