Skip to content

Commit cf92e38

Browse files
committed
Corrected comments.
1 parent bf29b81 commit cf92e38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/directory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ int readdir_select_impl(dir_itr_imp& imp, struct dirent** result);
363363

364364
typedef int readdir_impl_t(dir_itr_imp& imp, struct dirent** result);
365365

366-
//! Pointer to the actual implementation of the copy_file_data implementation
366+
//! Pointer to the actual implementation of readdir
367367
readdir_impl_t* readdir_impl_ptr = &readdir_select_impl;
368368

369369
void init_readdir_impl()

src/operations.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ int copy_file_data_read_write(int infile, int outfile, uintmax_t size, std::size
805805

806806
typedef int copy_file_data_t(int infile, int outfile, uintmax_t size, std::size_t blksize);
807807

808-
//! Pointer to the actual implementation of the copy_file_data implementation
808+
//! Pointer to the actual implementation of copy_file_data
809809
copy_file_data_t* copy_file_data = &copy_file_data_read_write;
810810

811811
#if defined(BOOST_FILESYSTEM_USE_SENDFILE) || defined(BOOST_FILESYSTEM_USE_COPY_FILE_RANGE)

0 commit comments

Comments
 (0)