diff --git a/src/core/heating_systems/heat_battery.rs b/src/core/heating_systems/heat_battery.rs index 6122c74..dc96097 100644 --- a/src/core/heating_systems/heat_battery.rs +++ b/src/core/heating_systems/heat_battery.rs @@ -32,8 +32,8 @@ impl HeatBatteryServiceWaterRegular { /// Arguments: /// * `heat_battery` - reference to the Heat Battery object providing the service /// * `service_name` - name of the service demanding energy - /// * `control_min` - optional reference to a control object which must select current the minimum timestep temperature - /// * `control_max` - optional reference to a control object which must select current the maximum timestep temperature + /// * `control_min` - reference to a control object which must select current the minimum timestep temperature + /// * `control_max` - reference to a control object which must select current the maximum timestep temperature pub(crate) fn new( heat_battery: Arc>, service_name: String, diff --git a/src/core/heating_systems/heat_network.rs b/src/core/heating_systems/heat_network.rs index fa9a33a..3364a08 100644 --- a/src/core/heating_systems/heat_network.rs +++ b/src/core/heating_systems/heat_network.rs @@ -96,8 +96,8 @@ impl HeatNetworkServiceWaterStorage { /// Arguments: /// * `heat_network` - reference to the HeatNetwork object providing the service /// * `service_name` - name of the service demanding energy from the heat network - /// * `control_min` - optional reference to a control object which must select current the minimum timestep temperature - /// * `control_max` - optional reference to a control object which must select current the maximum timestep temperature + /// * `control_min` - reference to a control object which must select current the minimum timestep temperature + /// * `control_max` - reference to a control object which must select current the maximum timestep temperature pub(crate) fn new( heat_network: Arc>, service_name: String,