fix typo in recordType method of wal_watcher.go (#5297)

Signed-off-by: tariqibrahim <tariq181290@gmail.com>
This commit is contained in:
Tariq Ibrahim 2019-03-04 08:33:35 -08:00 committed by Simon Pasquier
parent cfb9135a41
commit 1adb91738d

View file

@ -445,7 +445,7 @@ func recordType(rt tsdb.RecordType) string {
case tsdb.RecordTombstones:
return "tombstones"
default:
return "unkown"
return "unknown"
}
}