aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 1081357..28a6238 100644
--- a/README.md
+++ b/README.md
@@ -24,10 +24,11 @@ println(response.body) // has type String as specified when
## How is sttp different from other libraries?
-* immutable request builder which doesn't require the URI to be specified upfront. Allows defining partial requests
+* immutable request builder which doesn't impose any order in which request parameters need to be specified.
+One consequence of that approach is that the URI to be specified upfront. Allows defining partial requests
which contain common cookies/headers/options, which can later be specialized using a specific URI and HTTP method.
* support for multiple backends, both synchronous and asynchronous, with backend-specific streaming support
-* TODO URI interpolator with optional parameters support
+* URI interpolator with optional parameters support
## Usage