aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2021-01-21 16:13:35 -0800
committerIan Lance Taylor <iant@golang.org>2021-01-26 00:02:49 +0000
commitcf263e9f772eeeac21df6fe8f51a8c93e8ad5a27 (patch)
tree2a11d39bc9c641a8de18820f5f68bce982c05e7d
parentce8b318624adcdd45ecd53b33f6bae38bcccc7be (diff)
downloadgo-cf263e9f772eeeac21df6fe8f51a8c93e8ad5a27.tar.gz
go-cf263e9f772eeeac21df6fe8f51a8c93e8ad5a27.zip
os: correct names in CreateTemp and MkdirTemp doc comments
For #42026 Change-Id: I51e3ce9d3a4729cfac44bd3ff3f3ec80dcd5abb5 Reviewed-on: https://go-review.googlesource.com/c/go/+/285376 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
-rw-r--r--src/os/tempfile.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/tempfile.go b/src/os/tempfile.go
index 4f90fcf8e8..1ad44f1163 100644
--- a/src/os/tempfile.go
+++ b/src/os/tempfile.go
@@ -20,7 +20,7 @@ func nextRandom() string {
// opens the file for reading and writing, and returns the resulting file.
// The filename is generated by taking pattern and adding a random string to the end.
// If pattern includes a "*", the random string replaces the last "*".
-// If dir is the empty string, TempFile uses the default directory for temporary files, as returned by TempDir.
+// If dir is the empty string, CreateTemp uses the default directory for temporary files, as returned by TempDir.
// Multiple programs or goroutines calling CreateTemp simultaneously will not choose the same file.
// The caller can use the file's Name method to find the pathname of the file.
// It is the caller's responsibility to remove the file when it is no longer needed.
@@ -71,7 +71,7 @@ func prefixAndSuffix(pattern string) (prefix, suffix string, err error) {
// and returns the pathname of the new directory.
// The new directory's name is generated by adding a random string to the end of pattern.
// If pattern includes a "*", the random string replaces the last "*" instead.
-// If dir is the empty string, TempFile uses the default directory for temporary files, as returned by TempDir.
+// If dir is the empty string, MkdirTemp uses the default directory for temporary files, as returned by TempDir.
// Multiple programs or goroutines calling MkdirTemp simultaneously will not choose the same directory.
// It is the caller's responsibility to remove the directory when it is no longer needed.
func MkdirTemp(dir, pattern string) (string, error) {