Skip to content

Commit e71612e

Browse files
committed
Link to glossary entries, and fix typos
Based on code review comments. Signed-off-by: Sahas Subramanian <[email protected]>
1 parent a25d3d8 commit e71612e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/user-guide/glossary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ the component graph are:
169169
[`grid_power`][frequenz.sdk.timeseries.logical_meter.LogicalMeter.grid_power],
170170
[`consumer_power`][frequenz.sdk.timeseries.logical_meter.LogicalMeter.consumer_power],
171171
etc. for a microgrid, using the available components.
172-
- identify the available batteries or ev chargers at a site that can be
173-
controlled.
172+
- identify the available {{glossary("battery", "batteries")}} or
173+
{{glossary("EV charger", "EV chargers")}} at a site that can be controlled.
174174

175175
### Island
176176

src/frequenz/sdk/timeseries/formula_engine/_formula_engine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ class FormulaEngine(
239239
Composite `FormulaEngine`s can be built using arithmetic operations on
240240
`FormulaEngine`s streaming the same type of data.
241241
242-
For example, if you're interested in particular composite metric that can be
242+
For example, if you're interested in a particular composite metric that can be
243243
calculated by subtracting
244244
[`battery_pool().power`][frequenz.sdk.timeseries.battery_pool.BatteryPool.power] and
245245
[`ev_charger_pool().power`][frequenz.sdk.timeseries.ev_charger_pool.EVChargerPool]
@@ -452,7 +452,7 @@ class FormulaEngine3Phase(
452452
logical_meter = microgrid.logical_meter()
453453
ev_charger_pool = microgrid.ev_charger_pool()
454454
455-
# Calculate grid consumption current that's not used by the ev chargers
455+
# Calculate grid consumption current that's not used by the EV chargers
456456
other_current = (logical_meter.grid_current - ev_charger_pool.current).build("other_current")
457457
458458
async for sample in other_current.new_receiver():

0 commit comments

Comments
 (0)