Closed larmbuster closed 3 months ago
Fixes a minor typo in the "Complex Example" code example by changing temperature=Unit.CELSIUS(5) to temperature=Unit.Celsius(5).
temperature=Unit.CELSIUS(5)
temperature=Unit.Celsius(5)
With the change the code now works as expected.
Fixes a minor typo in the "Complex Example" code example by changing
temperature=Unit.CELSIUS(5)
totemperature=Unit.Celsius(5)
.With the change the code now works as expected.