From c59459935066ec50e610a3bee0e3627256796ef7 Mon Sep 17 00:00:00 2001 From: Freddie Chopin Date: Tue, 26 Mar 2019 17:31:20 +0100 Subject: [PATCH] Fix doxygen @ref in altcp.c Doxygen 1.8.15 doesn't like if the name of reference is followed by anything else than (selected?) punctuation or whitespace. bug #56004 --- src/core/altcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/altcp.c b/src/core/altcp.c index 028fcbc8..9644e82d 100644 --- a/src/core/altcp.c +++ b/src/core/altcp.c @@ -40,7 +40,7 @@ * * Replace "struct tcp_pcb" with "struct altcp_pcb" * * Prefix all called tcp API functions with "altcp_" instead of "tcp_" to link * against the altcp functions - * * @ref altcp_new (and @ref altcp_new_ip_type/@ref altcp_new_ip6) take + * * @ref altcp_new (and @ref altcp_new_ip_type / @ref altcp_new_ip6) take * an @ref altcp_allocator_t as an argument, whereas the original tcp API * functions take no arguments. * * An @ref altcp_allocator_t allocator is an object that holds a pointer to an @@ -75,7 +75,7 @@ * It is not defined by lwIP itself but by the TLS port (e.g. altcp_tls to mbedTLS * adaption). However, the parameters used to create it are defined in @ref * altcp_tls.h (see @ref altcp_tls_create_config_server_privkey_cert for servers - * and @ref altcp_tls_create_config_client/@ref altcp_tls_create_config_client_2wayauth + * and @ref altcp_tls_create_config_client / @ref altcp_tls_create_config_client_2wayauth * for clients). * * For mbedTLS, ensure that certificates can be parsed by 'mbedtls_x509_crt_parse()' and