doc update
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 11 Sep 2016 09:38:35 +0000 (11:38 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 11 Sep 2016 09:40:22 +0000 (11:40 +0200)
CONTRIBUTING.md
doc/cha-gtls-app.texi
guile/src/core.c
libdane/dane.c

index 7ac1550bda9959010a74e5e11286c1b4c7064d2f..2d294b5f9eeb65ac256f46d30c4e6702703e59e1 100644 (file)
@@ -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.
 
 
index 18f8938697261f03d6853140f8ceea0435a89c3c..a28b945475d2d0f5f56b7f970373c0520764d0d6 100644 (file)
@@ -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
index dc1ae862ac9f6cb2278332f103a0ed8f749f837c..a42ba76841e0ca36ced090be7fa8a61709e78efc 100644 (file)
@@ -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)
index 79e83104d77e02c398c149290d1b2031d2597cc8..42c98933a44b2ed4ebbcae0406606c60026454b7 100644 (file)
@@ -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.
  *