Skip to content

Commit

Permalink
Correct typos in a function comment
Browse files Browse the repository at this point in the history
Thanks to Thirunarayanan Balathandayuthapani for spotting this.
  • Loading branch information
dr-m committed Sep 19, 2022
1 parent 32bab2c commit bbf81b5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions storage/innobase/os/os0file.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4923,10 +4923,11 @@ os_file_io(
@param[in] type IO context
@param[in] file handle to an open file
@param[out] buf buffer from which to write
@param[in] n number of bytes to read, starting from offset
@param[in] offset file offset from the start where to read
@param[in] n number of bytes to write, starting from offset
@param[in] offset file offset from the start where to write
@param[out] err DB_SUCCESS or error code
@return number of bytes written, -1 if error */
@return number of bytes written
@retval -1 on error */
static MY_ATTRIBUTE((warn_unused_result))
ssize_t
os_file_pwrite(
Expand Down

0 comments on commit bbf81b5

Please sign in to comment.