Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
pinpong committed Sep 16, 2023
1 parent 56bd43e commit ae6dad3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/systems/energyManagers/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ export type EnergyManager = BaseSystemType & {
batterySoCLevel: number | null;
/** The ems enabled state */
emsEnabledState: EMSEnabledState | null;
/** The maximum power consumption from net as kilo watt */
/** The maximum power consumption from net as kilowatt */
maximumPowerConsumptionFromNet: number | null;
/** The maximum power exported to net as kilo watt */
/** The maximum power exported to net as kilowatt */
maximumPowerExportToNet: number | null;
/** The maximum solar panels power as kilo watt */
/** The maximum solar panels power as kilowatt */
maximumPowerSolarPanels: number | null;
/** The maximum battery power as kilo watt */
/** The maximum battery power as kilowatt */
maximumPowerBattery: number | null;
};

Expand Down
2 changes: 1 addition & 1 deletion src/systems/vents/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class Vents extends BaseSystem {
}

/**
* Sets the vent lelve.
* Sets the vent level.
* @param itemId - The item id.
* @param ventLevel - The new vent level.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/systems/wallBoxes/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export type WallBox = BaseSystemType & {
chargeUserName: string | null;
/** The charging duration time as hh:mm:ss */
chargeDurationTime: number | null;
/** The current charging energy as 0-... Kilowatt hour */
/** The current charging energy as 0-... kilowatt-hour */
currentChargingEnergy: number | null;
/** The charging start time as hh:mm:ss */
chargeStartTime: string | null;
Expand Down
2 changes: 1 addition & 1 deletion test/utils/colorUtils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
rgbToDecimal,
rgbToHex,
tunableWhiteToHex,
} from '../../src/utils/lights/colorUtils';
} from '../../src';

const bitterSweet = {
rgb: { r: 255, g: 100, b: 100 },
Expand Down

0 comments on commit ae6dad3

Please sign in to comment.