From 4bd6a7d69b6b869080dea2a45b4d8b5a6f88a7e9 Mon Sep 17 00:00:00 2001 From: "Sascha L. Teichmann" Date: Sun, 7 Sep 2014 17:29:42 +0200 Subject: [PATCH] Small string cosmetics --- README | 2 +- parser.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 842177c..ea5b028 100644 --- a/README +++ b/README @@ -26,7 +26,7 @@ and offer a TCP Redis interface a Minetest server and other processes can connect with. Beware! This is _not_ a fully featured Redis server with all of its commands. - Only the subset of Redis commands is implemented which is needed to run Minetes + Only the subset of Redis commands is implemented which is needed to run Minetest on top of it. To build mtredisalize a Go 1.x (x >= 1) environment is needed. By now diff --git a/parser.go b/parser.go index 1bb9e74..99be5ec 100644 --- a/parser.go +++ b/parser.go @@ -229,7 +229,7 @@ func (rce *RedisCommandExecutor) execute() bool { second, ok3 := rce.args[3].([]byte) if !ok1 || !ok2 || !ok3 { - log.Println("WARN: HSET data are not byte slices.") + log.Println("WARN: HSPATIAL data are not byte slices.") return false } return rce.commands.HSpatial(hash, first, second)