mirror of
https://github.com/NixOS/nix
synced 2025-06-26 03:21:16 +02:00
add missing c api parameter names to documentation
This commit is contained in:
parent
303268bb71
commit
359043ed0d
2 changed files with 3 additions and 3 deletions
|
@ -136,7 +136,7 @@ typedef struct NixCExternalValueDesc
|
|||
* or setting it to the empty string, will make the conversion throw an error.
|
||||
*/
|
||||
void (*printValueAsJSON)(
|
||||
void * self, EvalState *, bool strict, nix_string_context * c, bool copyToStore, nix_string_return * res);
|
||||
void * self, EvalState * state, bool strict, nix_string_context * c, bool copyToStore, nix_string_return * res);
|
||||
/**
|
||||
* @brief Convert the external value to XML
|
||||
*
|
||||
|
@ -155,7 +155,7 @@ typedef struct NixCExternalValueDesc
|
|||
*/
|
||||
void (*printValueAsXML)(
|
||||
void * self,
|
||||
EvalState *,
|
||||
EvalState * state,
|
||||
int strict,
|
||||
int location,
|
||||
void * doc,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue