Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix a documentation error #339

Merged
merged 1 commit into from
Jul 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
- name: Build
run: cargo build --verbose --all-features
- name: Docs
run: cargo rustdoc --lib --examples
run: cargo rustdoc --lib --all-features --examples
- name: Run tests
run: cargo test --verbose --all-features
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 0.13.1-dev
- add test to confirm a `base_url` can include a path and be joined with a relative path
- fix documentation typo

## 0.13.0 July 19, 2021
- enable [`gzip`](https://docs.rs/reqwest/*/reqwest/struct.ClientBuilder.html#method.gzip) support and set Accept-Encoding header by default in the client; disable with `--no-gzip` or `GooseDefault::NoGzip`
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ pub enum GooseDefault {
/// - [`GooseDefault::NoResetMetrics`]
/// - [`GooseDefault::NoMetrics`]
/// - [`GooseDefault::NoTaskMetrics`]
/// - [`GooseDefault::RequestsBody`]
/// - [`GooseDefault::RequestBody`]
/// - [`GooseDefault::NoErrorSummary`]
/// - [`GooseDefault::NoDebugBody`]
/// - [`GooseDefault::NoTelnet`]
Expand Down