From 34b69a7d1f3570aa056285253376ed7a7bde03d8 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 23 Jan 2023 21:44:47 -0800 Subject: [PATCH] Updated intro to match Java version --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 97c14ad..95f9d13 100644 --- a/README.md +++ b/README.md @@ -25,12 +25,14 @@ binary octet, however their unreserved set of characters differs and `application/x-www-form-urlencoded` adds conversion of space to `+`, that has the potential to be misunderstood. -This library encodes with rules that will be decoded correctly in either case. +This class encodes with rules that will be decoded correctly in either case. Additionally, this library allocates no memory when encoding isn't needed and does the work in a single pass without multiple loops. Both of these optimizations have a significantly beneficial impact on performance of encoding -compared to other solutions like the standard `URLEncoder` in the JDK. +compared to other solutions like the standard `URLEncoder` in the JDK or +`UriUtils` in Spring. + ## Examples (TL;DR)