From 4855cd01223b9477bb9112b8d77e480590f85cac Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Fri, 6 Aug 2021 14:43:03 +0300 Subject: [PATCH] Fix codespell --- pkg/zabbix/methods.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/zabbix/methods.go b/pkg/zabbix/methods.go index 2c465e9..b002278 100644 --- a/pkg/zabbix/methods.go +++ b/pkg/zabbix/methods.go @@ -9,7 +9,7 @@ import ( func (ds *Zabbix) GetHistory(ctx context.Context, items []*Item, timeRange backend.TimeRange) (History, error) { history := History{} // Zabbix stores history in different tables and `history` param required for query. So in one query it's only - // possible to get history for items with one type. In order to get history for items with multple types (numeric unsigned and numeric float), + // possible to get history for items with one type. In order to get history for items with multiple types (numeric unsigned and numeric float), // items should be grouped by the `value_type` field. groupedItemids := make(map[int][]string, 0) for _, item := range items {