From 7b55c353d973bb3b2b97886bd8834ff1138114a7 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Tue, 25 Aug 2020 13:05:35 +0200 Subject: doc(template): fix field doc of struct template_data --- template.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/template.h b/template.h index 043f59e..24b9504 100644 --- a/template.h +++ b/template.h @@ -35,11 +35,11 @@ * * `page_type == PAGE_TYPE_ERROR` → `entry == NULL` */ struct template_data { - enum page_type page_type; //! type of page to render - int status; //! HTTP status of the response - struct entry *entry; //! Pointer to entry if applicable, else `NULL` - char *script_name; //! value of `SCRIPT_NAME` environment variable - char *path_info; //! value of `PATH_INFO` environment variable + enum page_type page_type; //!< type of page to render + int status; //!< HTTP status of the response + struct entry *entry; //!< Pointer to entry if applicable, else `NULL` + char *script_name; //!< value of `SCRIPT_NAME` environment variable + char *path_info; //!< value of `PATH_INFO` environment variable }; /*! -- cgit 1.4.1