From c393784573fd5a4ce0169a022c5d4d4f63606d60 Mon Sep 17 00:00:00 2001 From: Ray Miller Date: Sat, 6 Jul 2024 13:04:51 +0100 Subject: [PATCH] Remove module component --- geohash.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geohash.scm b/geohash.scm index 4cb7d5a..e885353 100644 --- a/geohash.scm +++ b/geohash.scm @@ -1,7 +1,7 @@ ;; A Geohash implementation for Guile scheme ;; This is a port of the code from https://github.com/chrisveness/latlon-geohash/tree/master -(define-module (anarres geohash) +(define-module (geohash) #:use-module (ice-9 receive) #:use-module (ice-9 match) #:export (encode decode bounds adjacent neighbours))