Skip to content

Commit 2cedc85

Browse files
committed
Fix documentation of limit value
1 parent 4ff2bf4 commit 2cedc85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

usecases/api/types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ type LoadLimitsPhase struct {
2222
Phase model.ElectricalConnectionPhaseNameType // the phase
2323
IsChangeable bool // if the value can be changed via write, ignored when writing data
2424
IsActive bool // if the limit is active
25-
Value float64 // the limit in A
25+
Value float64 // the limit
2626
}
2727

2828
// Defines a limit data set
2929
type LoadLimit struct {
3030
Duration time.Duration // the duration of the limit,
3131
IsChangeable bool // if the value can be changed via write, ignored when writing data
3232
IsActive bool // if the limit is active
33-
Value float64 // the limit in A
33+
Value float64 // the limit
3434
}
3535

3636
// identification

0 commit comments

Comments
 (0)