From 01c337d94cbcf28189c7ca117e3eb5707eafe9a9 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Thu, 30 Oct 2025 06:53:05 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(rules):=20clarify=20scope?= =?UTF-8?q?=20usage=20for=20Gmail=20operations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - correct grammar in scope description --- src/rule_processor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rule_processor.rs b/src/rule_processor.rs index 13d95cf..835f531 100644 --- a/src/rule_processor.rs +++ b/src/rule_processor.rs @@ -73,7 +73,7 @@ const GMAIL_MODIFY_SCOPE: &str = "https://www.googleapis.com/auth/gmail.modify"; /// /// This scope allows all operations and is required to authorise the batch /// delete operation. It is only used for batch delete. For all other -/// operations [`GMAIL_MODIFY_SCOPE`](Self::GMAIL_MODIFY_SCOPE) is preferred. +/// operations `GMAIL_MODIFY_SCOPE` is preferred. const GMAIL_DELETE_SCOPE: &str = "https://mail.google.com/"; /// Internal trait defining the minimal operations needed for rule processing.