summaryrefslogtreecommitdiff
path: root/gcr
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2021-11-16 13:16:33 +0100
committerNiels De Graef <nielsdegraef@gmail.com>2021-11-16 13:20:26 +0100
commit365dbb021e23b547b9251d73f066e8266b010d98 (patch)
tree808e28ba38ab6eb17f87d9ae95beaa725e1aab1b /gcr
parentc8afe04054522b4db7e0b4d832bdbe424bc0d48f (diff)
downloadgcr-365dbb021e23b547b9251d73f066e8266b010d98.tar.gz
certifiate-request: Remove (constructor) annotation
This got added in the gi-docgen port. While it's technically correct, it's an API break for GIR-based bindings (notably, the Vala bindings are already suffering from build issues). As such, remove it again for API compatibility purposes.
Diffstat (limited to 'gcr')
-rw-r--r--gcr/gcr-certificate-request.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcr/gcr-certificate-request.c b/gcr/gcr-certificate-request.c
index dc3e936..dd58d42 100644
--- a/gcr/gcr-certificate-request.c
+++ b/gcr/gcr-certificate-request.c
@@ -39,7 +39,7 @@
* An object that allows creation of certificate requests. A certificate
* request is sent to a certificate authority to request an X.509 certificate.
*
- * Use [ctor@CertificateRequest.prepare] to create a blank certificate
+ * Use [func@CertificateRequest.prepare] to create a blank certificate
* request for a given private key. Set the common name on the certificate
* request with [method@CertificateRequest.set_cn], and then sign the request
* with [method@CertificateRequest.complete_async].
@@ -202,7 +202,7 @@ gcr_certificate_request_class_init (GcrCertificateRequestClass *klass)
}
/**
- * gcr_certificate_request_prepare: (constructor)
+ * gcr_certificate_request_prepare:
* @format: the format for the certificate request
* @private_key: the private key the the certificate is being requested for
*