Skip to content

Commit

Permalink
Remove subdomain from Wikipedia
Browse files Browse the repository at this point in the history
  • Loading branch information
GCHQ 77703 committed Aug 26, 2018
1 parent 001f3f3 commit 9113317
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/operations/FromGeohash.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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, <code>ww8p1r4t8</code> becomes <code>37.8324,112.5584</code>.";
this.infoURL = "https://en.wikipedia.org/wiki/Geohash";
this.infoURL = "https://wikipedia.org/wiki/Geohash";
this.inputType = "string";
this.outputType = "string";
this.args = [
Expand Down
2 changes: 1 addition & 1 deletion src/core/operations/ToGeohash.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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, <code>37.8324,112.5584</code> becomes <code>ww8p1r4t8</code>.";
this.infoURL = "https://en.wikipedia.org/wiki/Geohash";
this.infoURL = "https://wikipedia.org/wiki/Geohash";
this.inputType = "string";
this.outputType = "string";
this.args = [
Expand Down

0 comments on commit 9113317

Please sign in to comment.