From 80713fb40ebf48e27c6b782fe437d61b3e8b5340 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 5 Apr 2010 15:50:02 -0400 Subject: [PATCH] Fixed documentation issue. --- src/physfs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/physfs.h b/src/physfs.h index 80dd0c3b..14acae63 100644 --- a/src/physfs.h +++ b/src/physfs.h @@ -1244,9 +1244,9 @@ PHYSFS_DECL PHYSFS_sint64 PHYSFS_read(PHYSFS_File *handle, * The file must be opened for writing. * * \param handle retval from PHYSFS_openWrite() or PHYSFS_openAppend(). - * \param buffer buffer to store read data into. - * \param objSize size in bytes of objects being read from (handle). - * \param objCount number of (objSize) objects to read from (handle). + * \param buffer buffer of bytes to write to (handle). + * \param objSize size in bytes of objects being written to (handle). + * \param objCount number of (objSize) objects to write to (handle). * \return number of objects written. PHYSFS_getLastError() can shed light on * the reason this might be < (objCount). -1 if complete failure. */