From 8cae6fe1ad928fb85f70b404e0e167c316b4aa59 Mon Sep 17 00:00:00 2001 From: Leo <5376265+leoherzog@users.noreply.github.com> Date: Sun, 13 Dec 2020 12:14:40 -0500 Subject: [PATCH] Fix Typo --- code.gs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code.gs b/code.gs index 0dc0fdc..24dd978 100644 --- a/code.gs +++ b/code.gs @@ -1,5 +1,5 @@ /* - * Wunderground Station Forwarder v1.0 + * Wunderground Station Forwarder v1.1.2 * Fill in the API Keys (and which other services you'd like to update) below, and run the "Schedule" function once. You're all set! * If you make any changes to the API Keys or enabled services, run "Schedule" again. */ @@ -198,5 +198,5 @@ function fetchJSON_(url, headers) { Number.prototype.fToC = function() { return (this - 32) * (5 / 9); } Number.prototype.mphToMPS = function() { return this * 0.44704; } Number.prototype.inhgTohPa = function() { return this * 33.863886666667; } -Number.prototype.inTohmm = function() { return this * 25.4; } +Number.prototype.inTomm = function() { return this * 25.4; } Number.prototype.toFixedNumber = function(digits) { return +this.toFixed(digits); }