Skip to content

Commit

Permalink
EC-247 update comments for controls that are no longer optional
Browse files Browse the repository at this point in the history
  • Loading branch information
rachowell committed Feb 11, 2025
1 parent e1628cd commit 1a5c16f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/core/heating_systems/heat_battery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Mutex<HeatBattery>>,
service_name: String,
Expand Down
4 changes: 2 additions & 2 deletions src/core/heating_systems/heat_network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Mutex<HeatNetwork>>,
service_name: String,
Expand Down

0 comments on commit 1a5c16f

Please sign in to comment.