Ignore:
Timestamp:
Jan 31, 2014 8:52:09 AM (10 years ago)
Author:
nanang
Message:

Misc (re #1630): Fixed some more typos in the codes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/ioqueue.h

    r4359 r4724  
    643643 * Instruct the I/O Queue to read from the specified handle. This function 
    644644 * returns immediately (i.e. non-blocking) regardless whether some data has  
    645  * been transfered. If the operation can't complete immediately, caller will  
     645 * been transferred. If the operation can't complete immediately, caller will  
    646646 * be notified about the completion when it calls pj_ioqueue_poll(). If data 
    647647 * is immediately available, the function will return PJ_SUCCESS and the 
     
    729729 * Instruct the I/O Queue to write to the handle. This function will return 
    730730 * immediately (i.e. non-blocking) regardless whether some data has been  
    731  * transfered. If the function can't complete immediately, the caller will 
     731 * transferred. If the function can't complete immediately, the caller will 
    732732 * be notified about the completion when it calls pj_ioqueue_poll(). If  
    733  * operation completes immediately and data has been transfered, the function 
     733 * operation completes immediately and data has been transferred, the function 
    734734 * returns PJ_SUCCESS and the callback will NOT be called. 
    735735 * 
     
    753753 * 
    754754 * @return 
    755  *  - PJ_SUCCESS    If data was immediately transfered. In this case, no 
     755 *  - PJ_SUCCESS    If data was immediately transferred. In this case, no 
    756756 *                  pending operation has been scheduled and the callback 
    757757 *                  WILL NOT be called. 
    758758 *  - PJ_EPENDING   If the operation has been queued. Once data base been 
    759  *                  transfered, the callback will be called. 
     759 *                  transferred, the callback will be called. 
    760760 *  - non-zero      The return value indicates the error code. 
    761761 */ 
     
    770770 * Instruct the I/O Queue to write to the handle. This function will return 
    771771 * immediately (i.e. non-blocking) regardless whether some data has been  
    772  * transfered. If the function can't complete immediately, the caller will 
     772 * transferred. If the function can't complete immediately, the caller will 
    773773 * be notified about the completion when it calls pj_ioqueue_poll(). If  
    774  * operation completes immediately and data has been transfered, the function 
     774 * operation completes immediately and data has been transferred, the function 
    775775 * returns PJ_SUCCESS and the callback will NOT be called. 
    776776 * 
Note: See TracChangeset for help on using the changeset viewer.