From 45896fb4779379036dbd19bf5a436d06a47faa2a Mon Sep 17 00:00:00 2001 From: cangqiaoyuzhuo <850072022@qq.com> Date: Wed, 30 Oct 2024 19:45:20 +0800 Subject: [PATCH] chore: fix function name (#7381) ### Describe Your Changes fix function name ### Checklist The following checks are **mandatory**: - [x] My change adheres [VictoriaMetrics contributing guidelines](https://docs.victoriametrics.com/contributing/). --- lib/logstorage/block.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logstorage/block.go b/lib/logstorage/block.go index 3c23e17e0..5623f3e44 100644 --- a/lib/logstorage/block.go +++ b/lib/logstorage/block.go @@ -227,7 +227,7 @@ func (b *block) MustInitFromRows(timestamps []int64, rows [][]Field) { b.sortColumnsByName() } -// mustInitiFromRows initializes b from rows. +// mustInitFromRows initializes b from rows. // // b is valid until rows are changed. func (b *block) mustInitFromRows(rows [][]Field) {