From c493ba0d3c387a888f8c5bc7243162162441c643 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Tue, 16 Mar 2021 22:27:34 -0700 Subject: [PATCH] Fixed typo in geocode function. --- Zip2LatLng.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zip2LatLng.js b/Zip2LatLng.js index 48cb836..718cb36 100644 --- a/Zip2LatLng.js +++ b/Zip2LatLng.js @@ -33123,7 +33123,7 @@ var zipcodes = { }; class Zip2LatLng { - static gecode(zip) { + static geocode(zip) { return zipcodes[zip]; } }