mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 05:56:15 +02:00
add empty line to documentation comments after @brief
field (#10800)
* add empty line to documentation comments after `@brief` field Co-authored-by: Cole Helbling <cole.e.helbling@outlook.com>
This commit is contained in:
parent
1e2b26734b
commit
2bd66922ee
2 changed files with 6 additions and 1 deletions
|
@ -79,6 +79,7 @@ typedef struct nix_realised_string nix_realised_string;
|
|||
* @{
|
||||
*/
|
||||
/** @brief Function pointer for primops
|
||||
*
|
||||
* When you want to return an error, call nix_set_err_msg(context, NIX_ERR_UNKNOWN, "your error message here").
|
||||
*
|
||||
* @param[in] user_data Arbitrary data that was initially supplied to nix_alloc_primop
|
||||
|
|
|
@ -54,8 +54,10 @@ nix_err nix_libstore_init_no_load_config(nix_c_context * context);
|
|||
nix_err nix_init_plugins(nix_c_context * context);
|
||||
|
||||
/**
|
||||
* @brief Open a nix store
|
||||
* @brief Open a nix store.
|
||||
*
|
||||
* Store instances may share state and resources behind the scenes.
|
||||
*
|
||||
* @param[out] context Optional, stores error information
|
||||
* @param[in] uri URI of the Nix store, copied. See [*Store URL format* in the Nix Reference
|
||||
* Manual](https://nixos.org/manual/nix/stable/store/types/#store-url-format).
|
||||
|
@ -157,7 +159,9 @@ nix_err nix_store_realise(
|
|||
|
||||
/**
|
||||
* @brief get the version of a nix store.
|
||||
*
|
||||
* If the store doesn't have a version (like the dummy store), returns an empty string.
|
||||
*
|
||||
* @param[out] context Optional, stores error information
|
||||
* @param[in] store nix store reference
|
||||
* @param[in] callback Called with the version.
|
||||
|
|
Loading…
Reference in a new issue