summaryrefslogtreecommitdiff
path: root/lib/openpgp/privkey.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2015-03-20 13:22:43 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2015-03-20 13:45:51 +0100
commitade31777a9a5c493eb872c00fdb46eff6a5214c8 (patch)
treef2125694f8c6d102299494fe1995d7d0d1f71e91 /lib/openpgp/privkey.c
parentf2bef2d116e5142dea07d11727044abaaf9bb3ce (diff)
downloadgnutls-ade31777a9a5c493eb872c00fdb46eff6a5214c8.tar.gz
doc: avoid using structure for opaque types
Diffstat (limited to 'lib/openpgp/privkey.c')
-rw-r--r--lib/openpgp/privkey.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/openpgp/privkey.c b/lib/openpgp/privkey.c
index 6aa6fb5436..a9627f63f1 100644
--- a/lib/openpgp/privkey.c
+++ b/lib/openpgp/privkey.c
@@ -35,7 +35,7 @@
/**
* gnutls_openpgp_privkey_init:
- * @key: The structure to be initialized
+ * @key: A pointer to the type to be initialized
*
* This function will initialize an OpenPGP key structure.
*
@@ -52,7 +52,7 @@ int gnutls_openpgp_privkey_init(gnutls_openpgp_privkey_t * key)
/**
* gnutls_openpgp_privkey_deinit:
- * @key: The structure to be initialized
+ * @key: A pointer to the type to be initialized
*
* This function will deinitialize a key structure.
**/
@@ -70,7 +70,7 @@ void gnutls_openpgp_privkey_deinit(gnutls_openpgp_privkey_t key)
}
/*-
- * _gnutls_openpgp_privkey_cpy - This function copies a gnutls_openpgp_privkey_t structure
+ * _gnutls_openpgp_privkey_cpy - This function copies a gnutls_openpgp_privkey_t type
* @dest: The structure where to copy
* @src: The structure to be copied
*