From: Kevin Day Date: Thu, 7 Nov 2024 02:20:18 +0000 (-0600) Subject: Cleanup: f_fss_item_t documentation. X-Git-Tag: 0.7.0~49 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=140f9a39689ed06e523f31744219f94c555fee9a;p=fll Cleanup: f_fss_item_t documentation. --- diff --git a/level_0/f_fss/c/fss/item.h b/level_0/f_fss/c/fss/item.h index 3bd8c73..3306f54 100644 --- a/level_0/f_fss/c/fss/item.h +++ b/level_0/f_fss/c/fss/item.h @@ -31,7 +31,7 @@ extern "C" { * - object: The Object. * - close: The range representing where the Object closes for standards that require closing characters (such as after the Content). * - content: The Content associated with the Object. - * - parent: A location referencing a parrent Object or Content that this Object Content is nested under. + * - parent: A location referencing a parent Object or Content that this Object Content is nested under. */ #ifndef _di_f_fss_item_t_ typedef struct { @@ -63,14 +63,18 @@ extern "C" { * fss_basic_content before nested content. * nested_1 { * Nested content one. + * (Parent is object.) * } * * More content in between. * * nested_2 { * Nested content two. + * (Parent is object.) + * * nested_3 { * Nested content three. + * (Parent is nested_2.) * } * } *