mirror of
https://gitlab.freedesktop.org/uchardet/uchardet.git
synced 2025-12-07 01:06:40 +08:00
src: fix some doc comments. s/a instance/an instance/.
Unless mistaken, we should use "an" with next word starting with vowel.
This commit is contained in:
parent
c049332c41
commit
170ef349cf
@ -67,7 +67,7 @@ void uchardet_delete(uchardet_t ud);
|
||||
* for an encoding, so you should not worry about limiting input data.
|
||||
* As far as you should be concerned: the more the better.
|
||||
*
|
||||
* @param ud [in] handle of a instance of uchardet
|
||||
* @param ud [in] handle of an instance of uchardet
|
||||
* @param data [in] data
|
||||
* @param len [in] number of byte of data
|
||||
* @return non-zero number on failure.
|
||||
@ -76,19 +76,19 @@ int uchardet_handle_data(uchardet_t ud, const char * data, size_t len);
|
||||
|
||||
/**
|
||||
* Notify an end of data to an encoding detector.
|
||||
* @param ud [in] handle of a instance of uchardet
|
||||
* @param ud [in] handle of an instance of uchardet
|
||||
*/
|
||||
void uchardet_data_end(uchardet_t ud);
|
||||
|
||||
/**
|
||||
* Reset an encoding detector.
|
||||
* @param ud [in] handle of a instance of uchardet
|
||||
* @param ud [in] handle of an instance of uchardet
|
||||
*/
|
||||
void uchardet_reset(uchardet_t ud);
|
||||
|
||||
/**
|
||||
* Get an iconv-compatible name of the encoding that was detected.
|
||||
* @param ud [in] handle of a instance of uchardet
|
||||
* @param ud [in] handle of an instance of uchardet
|
||||
* @return name of charset on success and "" on failure.
|
||||
*/
|
||||
const char * uchardet_get_charset(uchardet_t ud);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user