From 9e5bc81f1c8fe6b611c2c0538e91e688521d68b7 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 7 Feb 2025 15:57:42 -0500 Subject: [PATCH] zeta: Promote line comment to doc comment (#24476) This PR promotes a line comment for the `tos_accepted` field to a doc comment. Release Notes: - N/A --- crates/zeta/src/zeta.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/zeta/src/zeta.rs b/crates/zeta/src/zeta.rs index 2dd6b7cbf2..bdd5c6412b 100644 --- a/crates/zeta/src/zeta.rs +++ b/crates/zeta/src/zeta.rs @@ -189,7 +189,8 @@ pub struct Zeta { data_collection_choice: Entity, llm_token: LlmApiToken, _llm_token_subscription: Subscription, - tos_accepted: bool, // Terms of service accepted + /// Whether the terms of service have been accepted. + tos_accepted: bool, _user_store_subscription: Subscription, license_detection_watchers: HashMap>, }