Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

port: minor apidoc cleanup #8886

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions port/cpl_vsil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2296,7 +2296,7 @@ int VSIFReadMultiRangeL(int nRanges, void **ppData,
* size_t nSize, size_t nCount )
* \brief Write bytes to file.
*
* Writess nCount objects of nSize bytes to the indicated file at the
* Writes nCount objects of nSize bytes to the indicated file at the
* current offset into the indicated buffer.
*
* This method goes through the VSIFileHandler virtualization and may
Expand All @@ -2306,16 +2306,16 @@ int VSIFReadMultiRangeL(int nRanges, void **ppData,
*
* @param pBuffer the buffer from which the data should be written (at least
* nCount * nSize bytes in size.
* @param nSize size of objects to read in bytes.
* @param nCount number of objects to read.
* @param nSize size of objects to write in bytes.
* @param nCount number of objects to write.
*
* @return number of objects successfully written.
*/

/**
* \brief Write bytes to file.
*
* Writess nCount objects of nSize bytes to the indicated file at the
* Writes nCount objects of nSize bytes to the indicated file at the
* current offset into the indicated buffer.
*
* This method goes through the VSIFileHandler virtualization and may
Expand All @@ -2325,8 +2325,8 @@ int VSIFReadMultiRangeL(int nRanges, void **ppData,
*
* @param pBuffer the buffer from which the data should be written (at least
* nCount * nSize bytes in size.
* @param nSize size of objects to read in bytes.
* @param nCount number of objects to read.
* @param nSize size of objects to write in bytes.
* @param nCount number of objects to write.
* @param fp file handle opened with VSIFOpenL().
*
* @return number of objects successfully written.
Expand Down
Loading