From 2566073941e9c7402f63ff0b18d9f189d0f05744 Mon Sep 17 00:00:00 2001 From: Isaiah Inuwa Date: Tue, 13 Jan 2026 08:31:27 -0600 Subject: [PATCH] Use "Examples" convention in doc comments --- apps/desktop/desktop_native/autofill_provider/src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/desktop/desktop_native/autofill_provider/src/lib.rs b/apps/desktop/desktop_native/autofill_provider/src/lib.rs index 079286e73e0..36b4c7d2493 100644 --- a/apps/desktop/desktop_native/autofill_provider/src/lib.rs +++ b/apps/desktop/desktop_native/autofill_provider/src/lib.rs @@ -124,7 +124,7 @@ pub enum ConnectionStatus { /// Before calling any other methods, check the connection status using /// [`AutofillProviderClient::get_connection_status()`]. /// -/// # Example +/// # Examples /// /// ```no_run /// use std::{sync::Arc, time::Duration}; @@ -495,7 +495,8 @@ impl TimedCallback { /// Block the current thread until either a response is received, or the /// specified timeout has passed. /// - /// # Usage + /// # Examples + /// /// ```no_run /// use std::{sync::Arc, time::Duration}; ///