diff --git a/src/model/data_form.rs b/src/model/data_form.rs index 57c3cd6..15e1f4f 100644 --- a/src/model/data_form.rs +++ b/src/model/data_form.rs @@ -356,7 +356,7 @@ impl Requires for DataForm { | Requirement::ExternalDataFormSubform(_) | Requirement::UnterformularSubform(_) | Requirement::ExternalUnterformularSubform(_) => { - Some(format!(" $ {}\n", entry.to_string())) + Some(format!(" * {}\n", entry.to_string())) } _ => None, }) diff --git a/src/model/unterformular.rs b/src/model/unterformular.rs index 823bd12..2901ae6 100644 --- a/src/model/unterformular.rs +++ b/src/model/unterformular.rs @@ -359,7 +359,7 @@ impl Requires for Unterformular { | Requirement::ExternalDataFormSubform(_) | Requirement::UnterformularSubform(_) | Requirement::ExternalUnterformularSubform(_) => { - Some(format!(" $ {}\n", entry.to_string())) + Some(format!(" * {}\n", entry.to_string())) } _ => None, })