We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf75f0 commit 2b42cd3Copy full SHA for 2b42cd3
README.md
@@ -13,7 +13,7 @@ The initial `?` question mark is automatically prepended.
13
use query_string_builder::QueryString;
14
15
fn main() {
16
- let qs = QueryString::new()
+ let qs = QueryString::simple()
17
.with_value("q", "apple")
18
.with_value("tasty", true)
19
.with_value("weight", 70.0)
src/lib.rs
@@ -8,7 +8,7 @@
8
//! ```
9
//! use query_string_builder::QueryString;
10
//!
11
-//! let qs = QueryString::dynamic()
+//! let qs = QueryString::simple()
12
//! .with_value("q", "🍎 apple")
//! .with_value("tasty", true)
//! .with_opt_value("color", None::<String>)
0 commit comments