From ff54e93ddf5d6fa1927165133505853f50748e9d Mon Sep 17 00:00:00 2001 From: yggverse Date: Wed, 15 Jan 2025 04:43:34 +0200 Subject: [PATCH] update comment --- src/app/browser/window/tab/item/page/client.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/browser/window/tab/item/page/client.rs b/src/app/browser/window/tab/item/page/client.rs index 3a8570f7..d8487d01 100644 --- a/src/app/browser/window/tab/item/page/client.rs +++ b/src/app/browser/window/tab/item/page/client.rs @@ -50,7 +50,11 @@ impl Client { } } + // Actions + /// Get new [Cancellable](https://docs.gtk.org/gio/class.Cancellable.html) by cancel previous one + /// * this action wanted just because of `Cancelable` member constructed privately, + /// where some external components may depend to sync their related processes pub fn cancellable(&self) -> Cancellable { // Init new Cancellable let cancellable = Cancellable::new(); @@ -68,8 +72,6 @@ impl Client { cancellable } - // Actions - /// Begin new request /// * the `query` as string, to support system routing requests (e.g. `source:`) pub fn request(&self, query: &str) {