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.