change Builders to only error at the end

Closes #189
This commit is contained in:
Sean McArthur
2017-08-31 11:45:24 -07:00
parent a02b388b2b
commit 779f8080ef
16 changed files with 390 additions and 313 deletions

View File

@@ -74,7 +74,7 @@ impl RedirectPolicy {
/// attempt.follow()
/// }
/// });
/// let client = reqwest::Client::builder()?
/// let client = reqwest::Client::builder()
/// .redirect(custom)
/// .build()?;
/// # Ok(())