From 140f9a39689ed06e523f31744219f94c555fee9a Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 6 Nov 2024 20:20:18 -0600 Subject: [PATCH] Cleanup: f_fss_item_t documentation. --- level_0/f_fss/c/fss/item.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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.) * } * } * -- 1.8.3.1