diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-09-11 11:38:35 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-09-11 11:40:22 +0200 |
commit | 292d4ea7f964644af29505267e43f5536563c8c8 (patch) | |
tree | ced228f2e74758f0fadaaa07f520944780c0bbe6 | |
parent | e9e42baf005f2bca808e49d7dc0e21a484a36915 (diff) | |
download | gnutls-292d4ea7f964644af29505267e43f5536563c8c8.tar.gz |
doc update
-rw-r--r-- | CONTRIBUTING.md | 2 | ||||
-rw-r--r-- | doc/cha-gtls-app.texi | 2 | ||||
-rw-r--r-- | guile/src/core.c | 2 | ||||
-rw-r--r-- | libdane/dane.c | 6 |
4 files changed, 6 insertions, 6 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7ac1550bda..2d294b5f9e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -81,7 +81,7 @@ be prefixed with an underscore. E.g. ```_gnutls_handshake_begin()``` Internal structures should not be exported. Especially pointers to internal data. Doing so harms future reorganization/rewrite of subsystems. -All exported functions must be listed in libgnutls.map.in +All exported functions must be listed in libgnutls.map.in, in order to be exported. diff --git a/doc/cha-gtls-app.texi b/doc/cha-gtls-app.texi index 18f8938697..a28b945475 100644 --- a/doc/cha-gtls-app.texi +++ b/doc/cha-gtls-app.texi @@ -376,7 +376,7 @@ See the function @funcref{gnutls_check_version}. On the other hand, it is often desirable to support more than one versions of the library. In that case you could utilize compile-time -feature checks using the the @code{GNUTLS_VERSION_NUMBER} macro. +feature checks using the @code{GNUTLS_VERSION_NUMBER} macro. For example, to conditionally add code for GnuTLS 3.2.1 or later, you may use: @example #if GNUTLS_VERSION_NUMBER >= 0x030201 diff --git a/guile/src/core.c b/guile/src/core.c index dc1ae862ac..a42ba76841 100644 --- a/guile/src/core.c +++ b/guile/src/core.c @@ -82,7 +82,7 @@ const char scm_gnutls_array_error_message[] = /* Weak-key hash table. */ static SCM weak_refs; -/* Register a weak reference from FROM to TO, such that the lifetime of TO is +/* Register a weak reference from @FROM to @TO, such that the lifetime of TO is greater than or equal to that of FROM. */ static void register_weak_reference (SCM from, SCM to) diff --git a/libdane/dane.c b/libdane/dane.c index 79e83104d7..42c98933a4 100644 --- a/libdane/dane.c +++ b/libdane/dane.c @@ -740,7 +740,7 @@ verify_ee(const gnutls_datum_t * raw_crt, * @chain_size: The size of the chain * @chain_type: The type of the certificate chain * @r: DANE data to check against - * @sflags: Flags for the the initialization of @s (if NULL) + * @sflags: Flags for the initialization of @s (if NULL) * @vflags: Verification flags; an OR'ed list of %dane_verify_flags_t. * @verify: An OR'ed list of %dane_verify_status_t. * @@ -834,7 +834,7 @@ dane_verify_crt_raw(dane_state_t s, * @hostname: The hostname associated with the chain * @proto: The protocol of the service connecting (e.g. tcp) * @port: The port of the service connecting (e.g. 443) - * @sflags: Flags for the the initialization of @s (if NULL) + * @sflags: Flags for the initialization of @s (if NULL) * @vflags: Verification flags; an OR'ed list of %dane_verify_flags_t. * @verify: An OR'ed list of %dane_verify_status_t. * @@ -906,7 +906,7 @@ dane_verify_crt(dane_state_t s, * @hostname: The hostname associated with the chain * @proto: The protocol of the service connecting (e.g. tcp) * @port: The port of the service connecting (e.g. 443) - * @sflags: Flags for the the initialization of @s (if NULL) + * @sflags: Flags for the initialization of @s (if NULL) * @vflags: Verification flags; an OR'ed list of %dane_verify_flags_t. * @verify: An OR'ed list of %dane_verify_status_t. * |