diff --git a/mmap.h b/mmap.h index 47d4516..0681f9b 100644 --- a/mmap.h +++ b/mmap.h @@ -15,7 +15,7 @@ const char* mmap_read(const char *filename,size_t* filesize); /* like mmap_read but use openat instead of open */ const char* mmap_readat(const char *filename,size_t* filesize,int dirfd); -/* open file for writing, mmap whole file privately (copy on write), +/* open file for reading, mmap whole file privately (copy on write), * close file, write length of map in filesize and return pointer to * map. */ char* mmap_private(const char *filename,size_t* filesize);