update comment

This commit is contained in:
yggverse 2025-01-15 04:43:34 +02:00
parent 9a916ed1a3
commit ff54e93ddf

View File

@ -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) {