From 1adb91738d308f6995f895ad8cac2ab6369e5c2d Mon Sep 17 00:00:00 2001 From: Tariq Ibrahim Date: Mon, 4 Mar 2019 08:33:35 -0800 Subject: [PATCH] fix typo in recordType method of wal_watcher.go (#5297) Signed-off-by: tariqibrahim --- storage/remote/wal_watcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/remote/wal_watcher.go b/storage/remote/wal_watcher.go index 185786c679..79625ac2a5 100644 --- a/storage/remote/wal_watcher.go +++ b/storage/remote/wal_watcher.go @@ -445,7 +445,7 @@ func recordType(rt tsdb.RecordType) string { case tsdb.RecordTombstones: return "tombstones" default: - return "unkown" + return "unknown" } }