diff --git a/src/core/operations/FromGeohash.mjs b/src/core/operations/FromGeohash.mjs
index ddf33257..1010da11 100644
--- a/src/core/operations/FromGeohash.mjs
+++ b/src/core/operations/FromGeohash.mjs
@@ -21,7 +21,7 @@ class FromGeohash extends Operation {
this.name = "From Geohash";
this.module = "Default";
this.description = "Converts Geohash strings into Lat / Long coordinates. For example, ww8p1r4t8 becomes 37.8324,112.5584.";
- this.infoURL = "https://en.wikipedia.org/wiki/Geohash";
+ this.infoURL = "https://wikipedia.org/wiki/Geohash";
this.inputType = "string";
this.outputType = "string";
this.args = [
diff --git a/src/core/operations/ToGeohash.mjs b/src/core/operations/ToGeohash.mjs
index 33ce0d91..826145ae 100644
--- a/src/core/operations/ToGeohash.mjs
+++ b/src/core/operations/ToGeohash.mjs
@@ -21,7 +21,7 @@ class ToGeohash extends Operation {
this.name = "To Geohash";
this.module = "Default";
this.description = "Converts Lat / Long coordinates into a Geohash string. For example, 37.8324,112.5584 becomes ww8p1r4t8.";
- this.infoURL = "https://en.wikipedia.org/wiki/Geohash";
+ this.infoURL = "https://wikipedia.org/wiki/Geohash";
this.inputType = "string";
this.outputType = "string";
this.args = [