11#[  allow(  clippy:: wildcard_imports )  ]  
22use  super :: * ; 
3- use  macro_tools:: {   container_kind  } ; 
3+ use  macro_tools:: container_kind; 
44
55/// 
66/// Definition of a field. 
@@ -455,7 +455,7 @@ impl< 'a > FormerField< 'a >
455455    { 
456456      let  debug = format ! 
457457      ( 
458-         r# " 
458+         r" 
459459impl< Definition > {former}< Definition > 
460460where 
461461  Definition : former::FormerDefinition< Storage = {former_storage} >, 
@@ -470,14 +470,14 @@ where
470470    self 
471471  }} 
472472}} 
473-         "#  , 
473+         " , 
474474        format!(  "{}" ,  qt!{  #typ }  ) , 
475475      ) ; 
476476      let  about = format ! 
477477      ( 
478- r# "derive : Former 
478+ r"derive : Former 
479479item : {item} 
480- field : {field_ident}"#  , 
480+ field : {field_ident}" , 
481481      ) ; 
482482      diag:: report_print (  about,  original_input,  debug ) ; 
483483    } 
@@ -693,7 +693,7 @@ field : {field_ident}"#,
693693    { 
694694      let  debug = format ! 
695695      ( 
696-         r# " 
696+         r" 
697697/// The collection setter provides a collection setter that returns a CollectionFormer tailored for managing a collection of child entities. It employs a generic collection definition to facilitate operations on the entire collection, such as adding or updating elements. 
698698
699699impl< Definition, > {former}< Definition, > 
@@ -713,14 +713,14 @@ where
713713  }} 
714714
715715}} 
716-         "#  , 
716+         " , 
717717        format!(  "{}" ,  qt!{  #(  #params,  ) *  }  ) , 
718718      ) ; 
719719      let  about = format ! 
720720      ( 
721- r# "derive : Former 
721+ r"derive : Former 
722722item : {item} 
723- field : {field_ident}"#  , 
723+ field : {field_ident}" , 
724724      ) ; 
725725      diag:: report_print (  about,  original_input,  debug ) ; 
726726    } 
@@ -736,13 +736,13 @@ field : {field_ident}"#,
736736
737737    let  subform_collection_end_doc = format ! 
738738    ( 
739-       r# " 
739+       r" 
740740A callback structure to manage the final stage of forming a `{0}` for the `{item}` collection. 
741741
742742This callback is used to integrate the contents of a temporary `{0}` back into the original `{item}` former 
743743after the subforming process is completed. It replaces the existing content of the `{field_ident}` field in `{item}` 
744744with the new content generated during the subforming process. 
745-       "#  , 
745+       " , 
746746      format!(  "{}" ,  qt!{  #field_typ }  ) , 
747747    ) ; 
748748
@@ -891,7 +891,7 @@ with the new content generated during the subforming process.
891891
892892    let  doc = format ! 
893893    ( 
894-       r# " 
894+       r" 
895895
896896Initiates the addition of {field_ident} to the `{item}` entity using a dedicated subformer. 
897897
@@ -905,7 +905,7 @@ parent's structure once formed.
905905Returns an instance of `Former2`, a subformer ready to begin the formation process for `{0}` entities, 
906906allowing for dynamic and flexible construction of the `{item}` entity's {field_ident}. 
907907
908-       "#  , 
908+       " , 
909909      format!(  "{}" ,  qt!{  #field_typ }  ) , 
910910    ) ; 
911911
@@ -946,15 +946,15 @@ allowing for dynamic and flexible construction of the `{item}` entity's {field_i
946946
947947      let  doc = format ! 
948948      ( 
949-         r# " 
949+         r" 
950950Provides a user-friendly interface to add an instancce of {field_ident} to the {item}. 
951951
952952# Returns 
953953
954954Returns an instance of `Former2`, a subformer ready to begin the formation process for `{0}` entities, 
955955allowing for dynamic and flexible construction of the `{item}` entity's {field_ident}. 
956956
957-         "#  , 
957+         " , 
958958        format!(  "{}" ,  qt!{  #field_typ }  ) , 
959959      ) ; 
960960
@@ -998,7 +998,7 @@ allowing for dynamic and flexible construction of the `{item}` entity's {field_i
998998    { 
999999      let  debug = format ! 
10001000      ( 
1001-         r# " 
1001+         r" 
10021002/// Initializes and configures a subformer for adding named child entities. This method leverages an internal function 
10031003/// to create and return a configured subformer instance. It allows for the dynamic addition of children with specific names, 
10041004/// integrating them into the formation process of the parent entity. 
@@ -1016,21 +1016,21 @@ where
10161016  // Replace {0} with name of type of entry value. 
10171017
10181018}} 
1019-         "#  , 
1019+         " , 
10201020        format!(  "{}" ,  qt!{  #entry_typ }  ) , 
10211021      ) ; 
10221022      let  about = format ! 
10231023      ( 
1024- r# "derive : Former 
1024+ r"derive : Former 
10251025item : {item} 
1026- field : {field_ident}"#  , 
1026+ field : {field_ident}" , 
10271027      ) ; 
10281028      diag:: report_print (  about,  original_input,  debug ) ; 
10291029    } 
10301030
10311031    let  doc = format ! 
10321032    ( 
1033-       r# " 
1033+       r" 
10341034
10351035Implements the `FormingEnd` trait for `{subform_entry_end}` to handle the final 
10361036stage of the forming process for a `{item}` collection that contains `{0}` elements. 
@@ -1058,7 +1058,7 @@ preformed elements to this storage.
10581058Returns the updated `{former}` instance with newly added {field_ident}, completing the 
10591059formation process of the `{item}`. 
10601060
1061-       "#  , 
1061+       " , 
10621062      format!(  "{}" ,  qt!{  #field_typ }  ) , 
10631063    ) ; 
10641064
@@ -1179,7 +1179,7 @@ formation process of the `{item}`.
11791179
11801180    let  doc = format ! 
11811181    ( 
1182-       r# " 
1182+       r" 
11831183
11841184Initiates the scalar subformer for a `{0}` entity within a `{item}`. 
11851185
@@ -1203,7 +1203,7 @@ is properly initialized with all necessary configurations, including the default
12031203This function is typically called internally by a more user-friendly method that abstracts away the complex 
12041204generics, providing a cleaner interface for initiating subform operations on scalar fields. 
12051205
1206-       "#  , 
1206+       " , 
12071207      format!(  "{}" ,  qt!{  #field_typ }  ) , 
12081208    ) ; 
12091209
@@ -1267,7 +1267,7 @@ generics, providing a cleaner interface for initiating subform operations on sca
12671267
12681268      let  doc = format ! 
12691269      ( 
1270-         r# " 
1270+         r" 
12711271Provides a user-friendly interface to begin subforming a scalar `{0}` field within a `{item}`. 
12721272
12731273This method abstracts the underlying complex generics involved in setting up the former, simplifying the 
@@ -1277,7 +1277,7 @@ This method utilizes the more generic `{subform_scalar}` method to set up and re
12771277providing a straightforward and type-safe interface for client code. It encapsulates details about the specific 
12781278former and end action types, ensuring a seamless developer experience when forming parts of a `{item}`. 
12791279
1280-         "#  , 
1280+         " , 
12811281        format!(  "{}" ,  qt!{  #field_typ }  ) , 
12821282      ) ; 
12831283
@@ -1320,7 +1320,7 @@ former and end action types, ensuring a seamless developer experience when formi
13201320    { 
13211321      let  debug = format ! 
13221322      ( 
1323-         r# " 
1323+         r" 
13241324/// Extends `{former}` to include a method that initializes and configures a subformer for the '{field_ident}' field. 
13251325/// This function demonstrates the dynamic addition of a named {field_ident}, leveraging a subformer to specify detailed properties. 
13261326
@@ -1334,21 +1334,21 @@ where
13341334    self._{field_ident}_subform_scalar::< {0}Former< _ >, _, >().name( name ) 
13351335  }} 
13361336}} 
1337-         "#  , 
1337+         " , 
13381338        format!(  "{}" ,  qt!{  #field_typ }  ) , 
13391339      ) ; 
13401340      let  about = format ! 
13411341      ( 
1342- r# "derive : Former 
1342+ r"derive : Former 
13431343item : {item} 
1344- field : {field_ident}"#  , 
1344+ field : {field_ident}" , 
13451345      ) ; 
13461346      diag:: report_print (  about,  original_input,  debug ) ; 
13471347    } 
13481348
13491349    let  doc = format ! 
13501350    ( 
1351-       r# " 
1351+       r" 
13521352
13531353Represents the endpoint for the forming process of a scalar field managed by a subformer within a `{item}` entity. 
13541354
@@ -1366,7 +1366,7 @@ Essentially, this end action integrates the individually formed scalar value bac
13661366- `super_former`: An optional context of the `{former}`, which will receive the value. The function ensures 
13671367  that this context is not `None` and inserts the formed value into the designated field within `{item}`'s storage. 
13681368
1369-       "#  , 
1369+       " , 
13701370      format!(  "{}" ,  qt!{  #field_typ }  ) , 
13711371    ) ; 
13721372
0 commit comments