diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -81,7 +81,7 @@ //! - how `serde_qs` handles invalid UTF-8 percent decoded characters //! //! ### Square Brackets -//! +//! //! Technically, square brackets should be encoded in URLs as `%5B` and `%5D`. //! However, they are often used in their raw format to specify querystrings //! such as `a[b]=123`. @@ -101,9 +101,9 @@ //! automatically encodes the brackets. But care must be taken to avoid //! using keys with square brackets in them, or unexpected things can //! happen. -//! +//! //! ### Invalid UTF-8 Percent Encodings -//! +//! //! Sometimes querystrings may have percent-encoded data which does not decode //! to UTF-8. In some cases it is useful for this to cause errors, which is how //! `serde_qs` works in strict mode (the default). Whereas in other cases it |