Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjorn committed Sep 6, 2016
1 parent c4a3326 commit 5dabf8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FloatingGlucose/Classes/Pebble/PebbleData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class PebbleData
public double RawDelta => this.RawGlucose - this.PreviousRawGlucose;
public string FormattedRawDelta => $"{(this.RoundedRawDelta() >= 0.0 ? "+" : "")}{this.RoundedRawDelta():N1}";

public double RoundedDelta() => Math.Round(this.RawDelta, 1);
public double RoundedDelta() => Math.Round(this.Delta, 1);
public double RoundedRawDelta() => Math.Round(this.RawDelta, 1);

public static CultureInfo Culture = new CultureInfo("en-US");
Expand Down

0 comments on commit 5dabf8e

Please sign in to comment.