@@ -103,7 +103,7 @@ typedef struct {
103
103
/** Parse a signer's public nonce.
104
104
*
105
105
* Returns: 1 when the nonce could be parsed, 0 otherwise.
106
- * Args: ctx: a secp256k1 context object
106
+ * Args: ctx: pointer to a context object
107
107
* Out: nonce: pointer to a nonce object
108
108
* In: in66: pointer to the 66-byte nonce to be parsed
109
109
*/
@@ -116,7 +116,7 @@ SECP256K1_API int secp256k1_musig_pubnonce_parse(
116
116
/** Serialize a signer's public nonce
117
117
*
118
118
* Returns: 1 when the nonce could be serialized, 0 otherwise
119
- * Args: ctx: a secp256k1 context object
119
+ * Args: ctx: pointer to a context object
120
120
* Out: out66: pointer to a 66-byte array to store the serialized nonce
121
121
* In: nonce: pointer to the nonce
122
122
*/
@@ -129,7 +129,7 @@ SECP256K1_API int secp256k1_musig_pubnonce_serialize(
129
129
/** Parse an aggregate public nonce.
130
130
*
131
131
* Returns: 1 when the nonce could be parsed, 0 otherwise.
132
- * Args: ctx: a secp256k1 context object
132
+ * Args: ctx: pointer to a context object
133
133
* Out: nonce: pointer to a nonce object
134
134
* In: in66: pointer to the 66-byte nonce to be parsed
135
135
*/
@@ -142,7 +142,7 @@ SECP256K1_API int secp256k1_musig_aggnonce_parse(
142
142
/** Serialize an aggregate public nonce
143
143
*
144
144
* Returns: 1 when the nonce could be serialized, 0 otherwise
145
- * Args: ctx: a secp256k1 context object
145
+ * Args: ctx: pointer to a context object
146
146
* Out: out66: pointer to a 66-byte array to store the serialized nonce
147
147
* In: nonce: pointer to the nonce
148
148
*/
@@ -155,7 +155,7 @@ SECP256K1_API int secp256k1_musig_aggnonce_serialize(
155
155
/** Serialize a MuSig partial signature
156
156
*
157
157
* Returns: 1 when the signature could be serialized, 0 otherwise
158
- * Args: ctx: a secp256k1 context object
158
+ * Args: ctx: pointer to a context object
159
159
* Out: out32: pointer to a 32-byte array to store the serialized signature
160
160
* In: sig: pointer to the signature
161
161
*/
@@ -168,7 +168,7 @@ SECP256K1_API int secp256k1_musig_partial_sig_serialize(
168
168
/** Parse a MuSig partial signature.
169
169
*
170
170
* Returns: 1 when the signature could be parsed, 0 otherwise.
171
- * Args: ctx: a secp256k1 context object
171
+ * Args: ctx: pointer to a context object
172
172
* Out: sig: pointer to a signature object
173
173
* In: in32: pointer to the 32-byte signature to be parsed
174
174
*
0 commit comments