From 1f25565a7938176aa963ae7391e53b9381b3a832 Mon Sep 17 00:00:00 2001 From: yggverse Date: Fri, 25 Oct 2024 19:31:59 +0300 Subject: [PATCH] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 65ea3df..008f41e 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ cargo add ggemini High-level API to make async socket request and auto-close connection on complete. -Return [Response](#clientresponseresponse) on success or [Error](#clienterror) enum on failure. +Return [Response](#clientresponseresponse) on success or [Error](#clienterror) enum on failure ``` rust use glib::{Uri, UriFlags}; @@ -44,7 +44,7 @@ match Uri::parse("gemini://geminiprotocol.net/", UriFlags::NONE) { } ``` -Pay attention: +**Pay attention:** * Response [Buffer](#clientsocketconnectioninputbufferBuffer) limited to default `capacity` (0x400) and `max_size` (0xfffff). If you want to change these values, use low-level API to setup connection manually. * To use [Cancelable](https://docs.gtk.org/gio/class.Cancellable.html) or async Priority values, take a look at [connection](#clientsocketconnection) methods.