Author: julianfoad
Date: Thu Dec 2 11:40:05 2010
New Revision: 1041336
URL: http://svn.apache.org/viewvc?rev=1041336&view=rev
Log:
* subversion/include/svn_io.h
(svn_io_dir_file_copy): Further clarify the doc string. A follow-up to
r1041102.
Suggested by: danielsh
Modified:
subversion/trunk/subversion/include/svn_io.h
Modified: subversion/trunk/subversion/include/svn_io.h
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_io.h?rev=1041336&r1=1041335&r2=1041336&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_io.h (original)
+++ subversion/trunk/subversion/include/svn_io.h Thu Dec 2 11:40:05 2010
@@ -692,11 +692,13 @@ svn_error_t *
svn_io_file_flush_to_disk(apr_file_t *file,
apr_pool_t *pool);
-/** Copy the file whose basename or relative path is @a file within
- * directory @a src_path to the same basename or relative path within
- * directory @a dest_path. Overwrite the destination if it already
- * exists. Set the destination file's permissions to match those of
- * the source. Use @a pool for memory allocations.
+/** Copy the file whose basename (or relative path) is @a file within
+ * directory @a src_path to the same basename (or relative path) within
+ * directory @a dest_path. Overwrite the destination file if it already
+ * exists. The destination directory (including any directory
+ * components in @a name) must already exist. Set the destination
+ * file's permissions to match those of the source. Use @a pool for
+ * memory allocations.
*/
svn_error_t *
svn_io_dir_file_copy(const char *src_path,