From 1d20ff2e69071c11d6dc1343070c4e1811bbc6db Mon Sep 17 00:00:00 2001 From: mxmCherry Date: Mon, 16 May 2022 20:54:05 +0300 Subject: [PATCH] adcom1: change const prefix ATypeXXX -> AgentTypeXXX --- adcom1/agent_type.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/adcom1/agent_type.go b/adcom1/agent_type.go index 95b2504..284d48a 100644 --- a/adcom1/agent_type.go +++ b/adcom1/agent_type.go @@ -7,7 +7,7 @@ type AgentType int64 // // Values of 500+ hold vendor-specific codes. const ( - ATypeWeb AgentType = 1 // An ID which is tied to a specific web browser or device (cookie-based, probabilistic, or other). - ATypeApp AgentType = 2 // In-app impressions, which will typically contain a type of device ID (or rather, the privacy-compliant versions of device IDs). - ATypePerson AgentType = 3 // A person-based ID, i.e., that is the same across devices. + AgentTypeWeb AgentType = 1 // An ID which is tied to a specific web browser or device (cookie-based, probabilistic, or other). + AgentTypeApp AgentType = 2 // In-app impressions, which will typically contain a type of device ID (or rather, the privacy-compliant versions of device IDs). + AgentTypePerson AgentType = 3 // A person-based ID, i.e., that is the same across devices. )