From 050bb2ea5fa34c71d55608cf40cfb7b6226260d2 Mon Sep 17 00:00:00 2001 From: Cassondra Foesch Date: Mon, 30 Dec 2024 03:43:58 +0000 Subject: [PATCH] Issue #609 - clarify what 'path contains a regular file' actually means --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index 83047d0..b747642 100644 --- a/client.go +++ b/client.go @@ -909,7 +909,7 @@ func (c *Client) Mkdir(path string) error { // MkdirAll creates a directory named path, along with any necessary parents, // and returns nil, or else returns an error. // If path is already a directory, MkdirAll does nothing and returns nil. -// If path contains a regular file, an error is returned +// If, while making any directory, that path is found to already be a regular file, an error is returned. func (c *Client) MkdirAll(path string) error { // Most of this code mimics https://golang.org/src/os/path.go?s=514:561#L13 // Fast path: if we can tell whether path is a directory or file, stop with success or error.