From e17eafd7d113cd36e73216a0a1c081986ce25824 Mon Sep 17 00:00:00 2001 From: arya rizky Date: Mon, 25 May 2026 20:12:52 +0700 Subject: [PATCH] Fix typo: explicty -> explicitly in server/service/packs.go (#45874) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is an independent contribution. No part of this PR was generated, reviewed, or influenced by any competitive or automated system. ## Summary Fix a typo in a code comment: `explicty` → `explicitly` ## Root Cause The comment on `TotalHostsCount` in `server/service/packs.go` contains the misspelling `explicty` instead of `explicitly`. ## Fix Corrected the spelling in the comment at line 18. ## Testing - No functional changes — comment-only fix - Go compilation unaffected ## Summary by CodeRabbit * **Chores** * Corrected spelling errors in internal code comments to improve code quality. [![Review Change Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/fleetdm/fleet/pull/45874?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack) --- server/service/packs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/service/packs.go b/server/service/packs.go index 0400ec3269..6b2f9584de 100644 --- a/server/service/packs.go +++ b/server/service/packs.go @@ -15,7 +15,7 @@ type packResponse struct { fleet.Pack QueryCount uint `json:"query_count" renameto:"report_count"` - // All current hosts in the pack. Hosts which are selected explicty and + // All current hosts in the pack. Hosts which are selected explicitly and // hosts which are part of a label. TotalHostsCount uint `json:"total_hosts_count"`