about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-08-25 13:05:35 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-08-25 13:23:03 +0200
commit7b55c353d973bb3b2b97886bd8834ff1138114a7 (patch)
tree13a0f448d4b404e92ba74aeda5a35a7dcbc1d930
parentf40fcaf64f3d545fac06c7a39f8aa0df1181393e (diff)
doc(template): fix field doc of struct template_data
-rw-r--r--template.h10
1 files 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
 };
 
 /*!