Template updates as per Eilon's comments

This commit is contained in:
SteveSandersonMS
2016-09-29 12:05:29 +01:00
parent 5f070daac8
commit 53889c0fc1
9 changed files with 119 additions and 124 deletions

View File

@@ -36,7 +36,7 @@ namespace WebApplicationBasic.Controllers
{
get
{
return 32 + (int)(this.TemperatureC / 0.5556);
return 32 + (int)(TemperatureC / 0.5556);
}
}
}