docuemntation cleanup

This commit is contained in:
Daniel Kahn Gillmor 2015-08-11 23:33:12 -04:00
parent 6bfa908ff6
commit 1f207c71d9
1 changed files with 1 additions and 7 deletions

View File

@ -776,14 +776,12 @@ psl_ctx_t *psl_load_fp(FILE *fp)
} }
/** /**
* psl_load_free: * psl_free:
* @psl: PSL context pointer * @psl: PSL context pointer
* *
* This function frees the the PSL context that has been retrieved via * This function frees the the PSL context that has been retrieved via
* psl_load_fp() or psl_load_file(). * psl_load_fp() or psl_load_file().
* *
* Returns: Pointer to a PSL context private or %NULL on failure.
*
* Since: 0.1 * Since: 0.1
*/ */
void psl_free(psl_ctx_t *psl) void psl_free(psl_ctx_t *psl)
@ -827,8 +825,6 @@ const psl_ctx_t *psl_builtin(void)
* This function returns number of public suffixes maintained by @psl. * This function returns number of public suffixes maintained by @psl.
* The number of exceptions within the Public Suffix List are not included. * The number of exceptions within the Public Suffix List are not included.
* *
* If the generation of built-in data has been disabled during compilation, 0 will be returned.
*
* Returns: Number of public suffixes entries in PSL context. * Returns: Number of public suffixes entries in PSL context.
* *
* Since: 0.1 * Since: 0.1
@ -849,8 +845,6 @@ int psl_suffix_count(const psl_ctx_t *psl)
* *
* This function returns number of public suffix exceptions maintained by @psl. * This function returns number of public suffix exceptions maintained by @psl.
* *
* If the generation of built-in data has been disabled during compilation, 0 will be returned.
*
* Returns: Number of public suffix exceptions in PSL context. * Returns: Number of public suffix exceptions in PSL context.
* *
* Since: 0.1 * Since: 0.1